diff options
author | Guy Harris <guy@alum.mit.edu> | 2015-09-30 15:22:58 -0700 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2015-09-30 22:24:47 +0000 |
commit | 9cf43d88a4ccced73483248080911d559e41e6b5 (patch) | |
tree | ad56bc22fa1f7e3173d47525960c6223064edde8 | |
parent | df7281064b33ef76ae3d38b4b7e13ac561ddb124 (diff) | |
download | wireshark-9cf43d88a4ccced73483248080911d559e41e6b5.tar.gz wireshark-9cf43d88a4ccced73483248080911d559e41e6b5.tar.bz2 wireshark-9cf43d88a4ccced73483248080911d559e41e6b5.zip |
It's "-Wno-XXX", not "-WnoXXX".
Change-Id: I90ac4872e2a792dac07a6c12c8f059795f7f6bc3
Reviewed-on: https://code.wireshark.org/review/10712
Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rwxr-xr-x | macosx-setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx-setup.sh b/macosx-setup.sh index f9db757c70..3735b58845 100755 --- a/macosx-setup.sh +++ b/macosx-setup.sh @@ -1304,7 +1304,7 @@ install_portaudio() { # Explicitly disable deprecation, so the damn thing will build # on El Capitan with Xcode 7. # - CFLAGS="$CFLAGS -Wnodeprecated-declarations -mmacosx-version-min=10.4 $SDKFLAGS" CXXFLAGS="$CXXFLAGS -mmacosx-version-min=10.4 $SDKFLAGS" LDFLAGS="$LDFLAGS $VERSION_MIN_FLAGS $SDKFLAGS" ./configure --disable-mac-universal || exit 1 + CFLAGS="$CFLAGS -Wno-deprecated-declarations -mmacosx-version-min=10.4 $SDKFLAGS" CXXFLAGS="$CXXFLAGS -mmacosx-version-min=10.4 $SDKFLAGS" LDFLAGS="$LDFLAGS $VERSION_MIN_FLAGS $SDKFLAGS" ./configure --disable-mac-universal || exit 1 make $MAKE_BUILD_OPTS || exit 1 $DO_MAKE_INSTALL || exit 1 cd .. |