diff options
author | Andres Freund | 2015-08-05 16:39:05 +0000 |
---|---|---|
committer | Andres Freund | 2015-08-05 16:40:18 +0000 |
commit | 18382ae7ede9a330d997ca4d53cb429ba2c4d5fd (patch) | |
tree | fc14576dc1bb6fa90ce11b8a5534f30e3d8f3416 | |
parent | de6fd1c898f6eca82c2130a9dbb42d00da68d79e (diff) |
Fix typo in commit de6fd1c.
Per buildfarm members mandrill and hornet.
-rw-r--r-- | src/template/aix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/template/aix b/src/template/aix index 414430a22f..f12023d731 100644 --- a/src/template/aix +++ b/src/template/aix @@ -15,7 +15,7 @@ fi # "IBM XL C/C++ for AIX, V12.1" miscompiles, for 32-bit, some inline # expansions of ginCompareItemPointers() "long long" arithmetic. To # take advantage of inlining, build a 64-bit PostgreSQL. -test "$GCC" != yes -a $(getconf HARDWARE_BITMODE) == '32'; then +if test "$GCC" != yes -a $(getconf HARDWARE_BITMODE) == '32'; then echo "$as_me: WARNING: disabling inlining on 32 bit aix due to a bug in xlc" 2>&1 CPPFLAGS="$CPPFLAGS -DPG_FORCE_DISABLE_INLINE" fi |