fix configure script again, this time correctly

Mon, 12 Jun 2023 20:09:30 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Mon, 12 Jun 2023 20:09:30 +0200
changeset 758
606519b4a867
parent 757
7ced4052e8ca
child 759
a3e35cae098b

fix configure script again, this time correctly

configure file | annotate | diff | comparison | revisions
make/project.xml file | annotate | diff | comparison | revisions
--- a/configure	Sun Jun 11 21:30:11 2023 +0200
+++ b/configure	Mon Jun 12 20:09:30 2023 +0200
@@ -288,9 +288,9 @@
         else
             break
         fi
-        curl-config libs > /dev/null
+        curl-config --libs > /dev/null
         if [ $? -eq 0 ]; then
-            LDFLAGS="$LDFLAGS `curl-config libs`"
+            LDFLAGS="$LDFLAGS `curl-config --libs`"
         else
             break
         fi
--- a/make/project.xml	Sun Jun 11 21:30:11 2023 +0200
+++ b/make/project.xml	Mon Jun 12 20:09:30 2023 +0200
@@ -13,7 +13,7 @@
 	</dependency>
 	<dependency name="curl">
 		<cflags type="exec">curl-config --cflags</cflags>
-		<ldflags type="exec">curl-config libs</ldflags>
+		<ldflags type="exec">curl-config --libs</ldflags>
 	</dependency>
 	
 	<dependency name="libxml2" platform="windows">

mercurial