summaryrefslogtreecommitdiff
path: root/src/makefiles
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2011-06-15 21:45:23 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2011-06-15 21:45:23 -0400
commit1568fa75bcf393977425ccb73752b98883a9f375 (patch)
tree1e7484b81eae58e48c679581fa9e509900c529f2 /src/makefiles
parente1ccaff6eea1b48f4b9b28cabaf0f990119b0d19 (diff)
downloadpostgresql-1568fa75bcf393977425ccb73752b98883a9f375.tar.gz
Use single quotes in preference to double quotes for protecting pathnames.
Per recommendation from Peter. Neither choice is bulletproof, but this is the existing style and it does help prevent unexpected environment variable substitution.
Diffstat (limited to 'src/makefiles')
-rw-r--r--src/makefiles/Makefile.aix4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/makefiles/Makefile.aix b/src/makefiles/Makefile.aix
index 7bf62ae2e8..fc759ec082 100644
--- a/src/makefiles/Makefile.aix
+++ b/src/makefiles/Makefile.aix
@@ -9,9 +9,9 @@ AROPT = crs
libpath := $(shell echo $(subst -L,:,$(filter -L/%,$(LDFLAGS))) | sed -e's/ //g'):/usr/lib:/lib
ifeq ($(host_os), aix3.2.5)
- rpath = -L$(rpathdir)
+ rpath = -L'$(rpathdir)'
else
- rpath = -Wl,-blibpath:$(rpathdir)$(libpath)
+ rpath = -Wl,-blibpath:'$(rpathdir)$(libpath)'
endif
DLSUFFIX = .so