diff options
author | Lars Müller <lmuelle@samba.org> | 2006-06-16 14:34:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:17:31 -0500 |
commit | 4f3e19950da94c16db384e64523b66961ad671bf (patch) | |
tree | 57a2f1041db15fc0675c0c66e41295d55e16c963 /source3 | |
parent | 366a2d498d115503067f306a1891ec2063baaeb8 (diff) | |
download | samba-4f3e19950da94c16db384e64523b66961ad671bf.tar.gz samba-4f3e19950da94c16db384e64523b66961ad671bf.tar.bz2 samba-4f3e19950da94c16db384e64523b66961ad671bf.zip |
r16294: Fix syntax error.
Credits to Andreas Schwab from SUSE Linux for this fix.
(This used to be commit da4c5c3b75e6fd4f9e661cbcbe7d38024a02d344)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/aclocal.m4 b/source3/aclocal.m4 index 59bd26bd24..39c6962d7a 100644 --- a/source3/aclocal.m4 +++ b/source3/aclocal.m4 @@ -804,7 +804,7 @@ AC_DEFUN( [AC_TRY_RUN_STRICT], old_LDFLAGS="$LDFLAGS"; LDFLAGS="$4"; export LDFLAGS; - AC_TRY_RUN([$1],[$5],[$6],[$7]); + AC_TRY_RUN([$1],[$5],[$6],[$7]) CFLAGS="$old_CFLAGS"; old_CFLAGS=""; export CFLAGS; |