about summary refs log tree commit diff
path: root/buildtools/configure.pl
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-11-04 01:55:08 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-11-04 01:55:08 +0000
commita9822c1a93d44fca519efd662f76ea6b5b68d095 (patch)
treec5054bea309f988e7c458190602a707d1e7e3571 /buildtools/configure.pl
parent236874fe07ed38b2b5927bb9d5caf0472a0e7870 (diff)
downloadnetpbm-mirror-a9822c1a93d44fca519efd662f76ea6b5b68d095.tar.gz
netpbm-mirror-a9822c1a93d44fca519efd662f76ea6b5b68d095.tar.xz
netpbm-mirror-a9822c1a93d44fca519efd662f76ea6b5b68d095.zip
don't override user's LDFLAGS
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@456 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'buildtools/configure.pl')
-rwxr-xr-xbuildtools/configure.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/configure.pl b/buildtools/configure.pl
index e2d5ef11..dc267849 100755
--- a/buildtools/configure.pl
+++ b/buildtools/configure.pl
@@ -2060,7 +2060,7 @@ if ($platform eq "GNU") {
         # above does NOT work for HP native compiler.
     }
 } elsif ($platform eq "AIX") {
-    push(@Makefile_config, 'LDFLAGS = -L /usr/pubsw/lib', "\n");
+    push(@Makefile_config, 'LDFLAGS += -L /usr/pubsw/lib', "\n");
     if ($compiler eq "cc") {
         # Yes, the -L option implies the runtime as well as linktime library
         # search path.  There's no way to specify runtime path independently.