1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: fix gxml-0.20.pc Requires syntax
After `>=` of `libxml-2.0` and `gee-0.8` a white space is needed.
Author: Seyed Mohamad Amin Modaresi <modaresisofthard@proton.me>
Forwarded: yes
diff --git a/gxml/gxml.pc.in b/gxml/gxml.pc.in
index 38e5965..ebdf184 100644
--- a/gxml/gxml.pc.in
+++ b/gxml/gxml.pc.in
@@ -8,6 +8,6 @@ Name: libgxml
Description: GObject API for XML manipulation and serialization library
URL: http://live.gnome.org/GXml
Version: @PROJECT_VERSION@
-Requires: glib-2.0 >= 2.72 gio-2.0 >= 2.72 gobject-2.0 >= 2.72 libxml-2.0 >=2.9.13 gee-0.8 >=0.20.6
+Requires: glib-2.0 >= 2.72 gio-2.0 >= 2.72 gobject-2.0 >= 2.72 libxml-2.0 >= 2.9.13 gee-0.8 >= 0.20.6
Libs: -L${libdir} -lgxml-@API_VERSION@
Cflags: -I${includedir}/gxml-@API_VERSION@
|