Remove duplicate specification of -Ae for HP-UX C compiler.
authorTom Lane <[email protected]>
Wed, 14 Jan 2015 03:52:11 +0000 (22:52 -0500)
committerTom Lane <[email protected]>
Wed, 14 Jan 2015 03:52:11 +0000 (22:52 -0500)
Autoconf has known about automatically selecting -Ae when needed for
quite some time now, so remove the redundant addition in template/hpux.
Noted while setting up buildfarm member pademelon.

src/template/hpux

index ce4d93ced7badb8ccbe786424930387088b4060f..79d3475664e6ddf4313f5b1e69ed9adb76d83d53 100644 (file)
@@ -1,9 +1,10 @@
 # src/template/hpux
 
+# Need this for access to many modern library features
 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
 
+# HP's compiler likes the spelling +O2 not -O2, so adjust default CFLAGS
 if test "$GCC" != yes ; then
-  CC="$CC -Ae"
   CFLAGS="+O2"
 fi