summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTollef Fog Heen <tfheen@err.no>2009-03-30 21:04:42 +0200
committerTollef Fog Heen <tfheen@err.no>2009-03-30 21:04:42 +0200
commitc5b07b472077808fc7c1124a2e058ca6b2c41dd0 (patch)
treecd8ade822671224fc386145dc229a41c659ec0cf
parent79f8ef9d51089f9d96f6ea181a5be74a6be5cbb5 (diff)
2009-03-30 Tollef Fog Heen <tfheen@err.no>
* pkg.c (add_virtual_pkgconfig_package): Fix URL to pkg-config.
-rw-r--r--ChangeLog2
-rw-r--r--pkg.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index eddac6a..a411591 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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,
diff --git a/pkg.c b/pkg.c
index 81cbc3e..73061ca 100644
--- a/pkg.c
+++ b/pkg.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);