diff options
author | Tollef Fog Heen <tfheen@err.no> | 2009-03-30 21:04:42 +0200 |
---|---|---|
committer | Tollef Fog Heen <tfheen@err.no> | 2009-03-30 21:04:42 +0200 |
commit | c5b07b472077808fc7c1124a2e058ca6b2c41dd0 (patch) | |
tree | cd8ade822671224fc386145dc229a41c659ec0cf | |
parent | 79f8ef9d51089f9d96f6ea181a5be74a6be5cbb5 (diff) |
2009-03-30 Tollef Fog Heen <tfheen@err.no>
* pkg.c (add_virtual_pkgconfig_package): Fix URL to pkg-config.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | pkg.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2009-03-30 Tollef Fog Heen <tfheen@err.no> + * pkg.c (add_virtual_pkgconfig_package): Fix URL to pkg-config. + * partial-glib.[ch]: Get rid of those, they are no longer in use. * poptparse.c, popthelp.c, poptconfig.c, popt.c, pkg.c, findme.c, @@ -232,7 +232,7 @@ add_virtual_pkgconfig_package (void) pkg->name = g_strdup ("pkg-config"); pkg->description = g_strdup ("pkg-config is a system for managing " "compile/link flags for libraries"); - pkg->url = g_strdup ("http://www.freedesktop.org/software/pkgconfig/"); + pkg->url = g_strdup ("http://pkg-config.freedesktop.org/"); debug_spew ("Adding virtual 'pkg-config' package to list of known packages\n"); g_hash_table_insert (packages, pkg->key, pkg); |