svn commit: samba r14957 - in branches/SAMBA_4_0/source: .

tridge at samba.org tridge at samba.org
Fri Apr 7 10:59:10 GMT 2006


Author: tridge
Date: 2006-04-07 10:59:10 +0000 (Fri, 07 Apr 2006)
New Revision: 14957

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=14957

Log:

fixed shell syntax for config.h creation, and move after AC_OUTPUT

Modified:
   branches/SAMBA_4_0/source/configure.in


Changeset:
Modified: branches/SAMBA_4_0/source/configure.in
===================================================================
--- branches/SAMBA_4_0/source/configure.in	2006-04-07 10:36:54 UTC (rev 14956)
+++ branches/SAMBA_4_0/source/configure.in	2006-04-07 10:59:10 UTC (rev 14957)
@@ -110,14 +110,14 @@
 $SMB_INFO_LIBRARIES
 CEOF
 
-cmp include/config_tmp.h include/config.h >/dev/null 2>&1
-CMP_RET=$?
-if [ $CMP_RET != 0 ];then
-	cp include/config_tmp.h include/config.h
-fi
-
 AC_OUTPUT_COMMANDS(
 [$PERL -I${builddir} -I${srcdir} -I${srcdir}/build ${srcdir}/build/smb_build/main.pl || exit $?],[
 PERL="$PERL";export PERL;export srcdir; export builddir;
 ])
 AC_OUTPUT
+
+cmp include/config_tmp.h include/config.h >/dev/null 2>&1
+CMP_RET=$?
+if test $CMP_RET != 0; then
+	cp include/config_tmp.h include/config.h
+fi



More information about the samba-cvs mailing list