]> granicus.if.org Git - postgresql/commitdiff
Dept. of third thoughts: PG_LIBS may contain a -L switch, so it had better
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 5 Jul 2010 23:40:13 +0000 (23:40 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 5 Jul 2010 23:40:13 +0000 (23:40 +0000)
stay in front of LDFLAGS.

src/makefiles/pgxs.mk

index 36ac5be8dad1566d6fda9b756ff6a8c8f451d610..7910c35bca075d42457610a71603fec3d5d0c47b 100644 (file)
@@ -1,6 +1,6 @@
 # PGXS: PostgreSQL extensions makefile
 
-# $PostgreSQL: pgsql/src/makefiles/pgxs.mk,v 1.21 2010/07/05 23:30:50 tgl Exp $ 
+# $PostgreSQL: pgsql/src/makefiles/pgxs.mk,v 1.22 2010/07/05 23:40:13 tgl Exp $ 
 
 # This file contains generic rules to build many kinds of simple
 # extension modules.  You only need to set a few variables and include
@@ -286,5 +286,5 @@ endif
 
 ifdef PROGRAM
 $(PROGRAM): $(OBJS)
-       $(CC) $(CFLAGS) $(OBJS) $(LDFLAGS) $(LDFLAGS_EX) $(PG_LIBS) $(LIBS) -o $@
+       $(CC) $(CFLAGS) $(OBJS) $(PG_LIBS) $(LDFLAGS) $(LDFLAGS_EX) $(LIBS) -o $@
 endif