diff options
author | Tim Potter <tpot@samba.org> | 1999-07-22 23:29:15 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 1999-07-22 23:29:15 +0000 |
commit | f05928e40705b401ee86b5a346373c52d58dd254 (patch) | |
tree | 77b7862c23c3534e2c13b24fb3792e440e4032e2 /source3 | |
parent | 8f54fdb01a3aed5bdcfc9dc69e1c77c0d13b4e98 (diff) | |
download | samba-f05928e40705b401ee86b5a346373c52d58dd254.tar.gz samba-f05928e40705b401ee86b5a346373c52d58dd254.tar.bz2 samba-f05928e40705b401ee86b5a346373c52d58dd254.zip |
'export BEANS=ham' is a bash-ism. For those who don't have a symbolic
link from bash to /bin/sh, the correct form is 'BEANS=ham; export BEANS'.
(This used to be commit 569aca445a22ccc3805a5dd5e1fc893011f0a147)
Diffstat (limited to 'source3')
-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 487f39c5ab..5b7785101c 100755 --- a/source3/configure.developer +++ b/source3/configure.developer @@ -1,3 +1,3 @@ #!/bin/sh -export CFLAGS="-g -O2 -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -DDEBUG_PASSWORD" +CFLAGS="-g -O2 -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -DDEBUG_PASSWORD"; export CFLAGS ./configure |