summaryrefslogtreecommitdiff
path: root/src/template/aix
diff options
context:
space:
mode:
authorBruce Momjian2004-11-27 05:03:26 +0000
committerBruce Momjian2004-11-27 05:03:26 +0000
commit3aa9776d95ca8d96798545f9eaa496303a88b51a (patch)
tree2df7b52d31f0351947bb6ab4438e8b85e71a5e91 /src/template/aix
parentb82323e05e57d7c4fb7a8eab9f27eb059d28309a (diff)
Add to CPPFLAGS/CFLAGS in template files, don't over-ride them.
Diffstat (limited to 'src/template/aix')
-rw-r--r--src/template/aix4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/template/aix b/src/template/aix
index 48f1110f3e8..96641125bb4 100644
--- a/src/template/aix
+++ b/src/template/aix
@@ -1,10 +1,10 @@
if test "$GCC" != yes ; then
case $host_os in
aix3.2.5 | aix4.1*)
- CFLAGS="-O -qmaxmem=16384 -qsrcmsg"
+ CFLAGS="$CFLAGS -O -qmaxmem=16384 -qsrcmsg"
;;
*)
- CFLAGS="-O2 -qmaxmem=16384 -qsrcmsg -qlonglong"
+ CFLAGS="$CFLAGS -O2 -qmaxmem=16384 -qsrcmsg -qlonglong"
;;
esac
fi