diff options
author | David Hows <howsdav@gmail.com> | 2016-03-11 14:31:08 +1100 |
---|---|---|
committer | David Hows <howsdav@gmail.com> | 2016-03-11 14:31:08 +1100 |
commit | d480863cbb55910b77322bca2a07c5a1cc5ceada (patch) | |
tree | 286c580b72a82aec4aa23e5b5193a92436cdd9d1 /build_posix | |
parent | bcd26f82e60e493b8a3e847feea93072e4d851a1 (diff) | |
download | mongo-d480863cbb55910b77322bca2a07c5a1cc5ceada.tar.gz |
WT-2459 - Fix comments, change casing
Diffstat (limited to 'build_posix')
-rw-r--r-- | build_posix/configure.ac.in | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/build_posix/configure.ac.in b/build_posix/configure.ac.in index 3db445fa562..3d0ba479cbd 100644 --- a/build_posix/configure.ac.in +++ b/build_posix/configure.ac.in @@ -36,13 +36,12 @@ AM_PROG_AS(as gas) # When we are compiling with overridden C and assembly compilers on PPC # then we can run into an issue where libtool doesn't see the needed tag -# for compiling and will error out. We set a bad tag here, which still -# lets the compile pass without overriding anything. +# for compiling and will error out. if test "$CC" != "$CCAS"; then AS_CASE([$host_cpu], - [ppc64*], [AM_LIBTOOLFLAGS="--tag=cc"], - [elf64lppc], [AM_LIBTOOLFLAGS="--tag=cc"], - [powerpc*], [AM_LIBTOOLFLAGS="--tag=cc"], + [ppc64*], [AM_LIBTOOLFLAGS+="--tag=CC"], + [elf64lppc], [AM_LIBTOOLFLAGS+="--tag=CC"], + [powerpc*], [AM_LIBTOOLFLAGS+="--tag=CC"], []) fi |