aboutsummaryrefslogtreecommitdiff
path: root/src/template/unixware
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2004-11-27 05:03:26 +0000
committerBruce Momjian <bruce@momjian.us>2004-11-27 05:03:26 +0000
commit3aa9776d95ca8d96798545f9eaa496303a88b51a (patch)
tree2df7b52d31f0351947bb6ab4438e8b85e71a5e91 /src/template/unixware
parentb82323e05e57d7c4fb7a8eab9f27eb059d28309a (diff)
downloadpostgresql-3aa9776d95ca8d96798545f9eaa496303a88b51a.tar.gz
postgresql-3aa9776d95ca8d96798545f9eaa496303a88b51a.zip
Add to CPPFLAGS/CFLAGS in template files, don't over-ride them.
Diffstat (limited to 'src/template/unixware')
-rw-r--r--src/template/unixware4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/template/unixware b/src/template/unixware
index 499eb9c3497..a4125af2d9a 100644
--- a/src/template/unixware
+++ b/src/template/unixware
@@ -13,9 +13,9 @@ void g(void){
__EOF__
if $CC -c -O -Kinline conftest.c >conftest.err 2>&1; then
- CFLAGS="-O -Kinline"
+ CFLAGS="$CFLAGS -O -Kinline"
else
- CFLAGS="-O -Kinline,no_host"
+ CFLAGS="$CFLAGS -O -Kinline,no_host"
fi
rm -f conftest.*