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

lha at samba.org lha at samba.org
Thu Jul 14 02:56:18 GMT 2005


Author: lha
Date: 2005-07-14 02:56:18 +0000 (Thu, 14 Jul 2005)
New Revision: 8444

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

Log:
make ./configure.mumble CC='ccache cc'
work by using "@$" instead of $*

Modified:
   branches/SAMBA_4_0/source/configure.developer
   branches/SAMBA_4_0/source/configure.nodebug.developer
   branches/SAMBA_4_0/source/configure.tridge.opt


Changeset:
Modified: branches/SAMBA_4_0/source/configure.developer
===================================================================
--- branches/SAMBA_4_0/source/configure.developer	2005-07-14 02:44:30 UTC (rev 8443)
+++ branches/SAMBA_4_0/source/configure.developer	2005-07-14 02:56:18 UTC (rev 8444)
@@ -1,2 +1,2 @@
 #!/bin/sh
-`dirname $0`/configure -C --enable-developer $*
+`dirname $0`/configure -C --enable-developer "$@"

Modified: branches/SAMBA_4_0/source/configure.nodebug.developer
===================================================================
--- branches/SAMBA_4_0/source/configure.nodebug.developer	2005-07-14 02:44:30 UTC (rev 8443)
+++ branches/SAMBA_4_0/source/configure.nodebug.developer	2005-07-14 02:56:18 UTC (rev 8444)
@@ -1,3 +1,3 @@
 #!/bin/sh
 CFLAGS="-Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -DDEBUG_PASSWORD"; export CFLAGS
-./configure $*
+./configure "$@"

Modified: branches/SAMBA_4_0/source/configure.tridge.opt
===================================================================
--- branches/SAMBA_4_0/source/configure.tridge.opt	2005-07-14 02:44:30 UTC (rev 8443)
+++ branches/SAMBA_4_0/source/configure.tridge.opt	2005-07-14 02:56:18 UTC (rev 8444)
@@ -1,2 +1,2 @@
 #!/bin/sh
-./configure $* -C --prefix=/home/tridge/samba/samba4/prefix --enable-developer --enable-debug --enable-socket-wrapper 
+./configure "$@" -C --prefix=/home/tridge/samba/samba4/prefix --enable-developer --enable-debug --enable-socket-wrapper 



More information about the samba-cvs mailing list