1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-21 03:33:16 +03:00

r8444: make ./configure.mumble CC='ccache cc'

work by using "@$" instead of $*
This commit is contained in:
Love Hörnquist Åstrand
2005-07-14 02:56:18 +00:00
committed by Gerald (Jerry) Carter
parent 0e5b89b1e8
commit 98e8049bc3
3 changed files with 3 additions and 3 deletions

View File

@@ -1,2 +1,2 @@
#!/bin/sh
`dirname $0`/configure -C --enable-developer $*
`dirname $0`/configure -C --enable-developer "$@"

View File

@@ -1,3 +1,3 @@
#!/bin/sh
CFLAGS="-Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -DDEBUG_PASSWORD"; export CFLAGS
./configure $*
./configure "$@"

View File

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