]> granicus.if.org Git - postgresql/commitdiff
> A quick look shows that when you use --with-libraries=/foo/bar the
authorBruce Momjian <bruce@momjian.us>
Sat, 2 Jul 2005 23:28:22 +0000 (23:28 +0000)
committerBruce Momjian <bruce@momjian.us>
Sat, 2 Jul 2005 23:28:22 +0000 (23:28 +0000)
> generated link line for libraries says
>
>  -L/foo/bar -lpq
>
> and it should probably be the other way around (as it is for the
> executables).
>
> So I suspect we need some makefile tuning.

You were correct. This patch fixes it.

Jim C. Nasby

src/Makefile.shlib

index 002071e06cc1afe9b3a6bc8f14adadd20cd17ef1..caa2470cccb8779d24a8199b5336a4a8af600e78 100644 (file)
@@ -6,7 +6,7 @@
 # Copyright (c) 1998, Regents of the University of California
 #
 # IDENTIFICATION
-#    $PostgreSQL: pgsql/src/Makefile.shlib,v 1.90 2004/11/20 21:13:04 tgl Exp $
+#    $PostgreSQL: pgsql/src/Makefile.shlib,v 1.91 2005/07/02 23:28:22 momjian Exp $
 #
 #-------------------------------------------------------------------------
 
@@ -240,7 +240,7 @@ ifeq ($(PORTNAME), beos)
   SHLIB_LINK           += -ltermcap -lstdc++.r4 -lbind -lsocket -L/boot/develop/lib/x86
 endif
 
-SHLIB_LINK := $(filter -L%, $(LDFLAGS)) $(SHLIB_LINK)
+SHLIB_LINK := $(SHLIB_LINK) $(filter -L%, $(LDFLAGS))
 ifeq ($(enable_rpath), yes)
 SHLIB_LINK += $(rpath)
 endif