diff options
author | Tim Potter <tpot@samba.org> | 2000-12-01 01:22:17 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2000-12-01 01:22:17 +0000 |
commit | afa1a5abaaedd4a722ba9c040dae4271be3ac277 (patch) | |
tree | 7d43d5fa351b829b0084e245dee9b60bf96a0731 /source3/configure.developer | |
parent | 7d7c9a2f794ab587c56be08b6900e9887d3fa0c3 (diff) | |
download | samba-afa1a5abaaedd4a722ba9c040dae4271be3ac277.tar.gz samba-afa1a5abaaedd4a722ba9c040dae4271be3ac277.tar.bz2 samba-afa1a5abaaedd4a722ba9c040dae4271be3ac277.zip |
Run configure script using dirname of $0. This allows configure.developer
to be run when the build directory != source directory.
(This used to be commit 697e8e6de50ca4d1a37ec89330a6916429fd9a89)
Diffstat (limited to 'source3/configure.developer')
-rwxr-xr-x | source3/configure.developer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.developer b/source3/configure.developer index 07ce9fcf12..c3856889ea 100755 --- a/source3/configure.developer +++ b/source3/configure.developer @@ -1,4 +1,4 @@ #!/bin/sh CFLAGS="-g -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -DDEBUG_PASSWORD -DDEVELOPER" export CFLAGS -./configure $* +`dirname $0`/configure $* |