1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

r8359: fix a shell warning

metze
(This used to be commit 9739aa75d27e854657c97208850f07d40adb4dbd)
This commit is contained in:
Stefan Metzmacher 2005-07-12 08:03:46 +00:00 committed by Gerald (Jerry) Carter
parent 24f4236a9f
commit 908a2e6cc1

View File

@ -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])