diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-07-12 08:03:46 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:20:11 -0500 |
commit | 908a2e6cc17ba6fa83e8b9efc3069dbd1d7d5d22 (patch) | |
tree | 7bc0c55a21bc28f0e5251102fd8549c9a272122c /source4/build/m4 | |
parent | 24f4236a9f24bdef8cbbfa868318df31152dea5d (diff) | |
download | samba-908a2e6cc17ba6fa83e8b9efc3069dbd1d7d5d22.tar.gz samba-908a2e6cc17ba6fa83e8b9efc3069dbd1d7d5d22.tar.bz2 samba-908a2e6cc17ba6fa83e8b9efc3069dbd1d7d5d22.zip |
r8359: fix a shell warning
metze
(This used to be commit 9739aa75d27e854657c97208850f07d40adb4dbd)
Diffstat (limited to 'source4/build/m4')
-rw-r--r-- | source4/build/m4/check_path.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/build/m4/check_path.m4 b/source4/build/m4/check_path.m4 index 7ff0a353b8..a6e9ab258d 100644 --- a/source4/build/m4/check_path.m4 +++ b/source4/build/m4/check_path.m4 @@ -159,7 +159,7 @@ AC_ARG_ENABLE(developer, [ --enable-developer Turn on developer warnings a debug=no AC_ARG_ENABLE(debug, [ --enable-debug Turn on compiler debugging information (default=no)], - [if test x$enable_debug = xyes -a test x$enable_developer != xyes; then + [if test x$enable_debug = xyes -a x$enable_developer != xyes; then debug=yes CFLAGS="${CFLAGS} -g" fi]) |