diff options
author | Martin Pool <mbp@samba.org> | 2001-11-22 23:59:48 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2001-11-22 23:59:48 +0000 |
commit | 71c15a5f48bc91bd1e26663ed3b76c34fb81b591 (patch) | |
tree | 0517c8d4911ea8b1d2899f779b3a9cb0cd70e2ce /testsuite | |
parent | fbfd27a495afa8673d472957867e58b34499760e (diff) | |
download | samba-71c15a5f48bc91bd1e26663ed3b76c34fb81b591.tar.gz |
Rename $pwd to $test_root to avoid future confusion.
(This used to be commit fa7367a9731bc139ff4611f2781f3ca9bc7f89a7)
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/build_farm/basicsmb.fns | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/testsuite/build_farm/basicsmb.fns b/testsuite/build_farm/basicsmb.fns index 5c5d82b00f1..5c3ab9b90ca 100644 --- a/testsuite/build_farm/basicsmb.fns +++ b/testsuite/build_farm/basicsmb.fns @@ -2,7 +2,7 @@ # Common functions for Samba build scripts. -# Copyright (C) 2001 by Martin Pool <mbp@samba.org> +# Copyright (C) 2001 by Martin Pool <mbp@samba.org> and others # The following variables are passed in by the calling script. They # originate in either the buildfarm scripts or the configured @@ -24,7 +24,7 @@ template_smb_conf_setup() { cat basicsmb.smb.conf$1.template | \ sed "s|PREFIX|$prefix|g" | \ - sed "s|BUILD_FARM|$pwd|g" | \ + sed "s|BUILD_FARM|$test_root|g" | \ sed "s|WHOAMI|$whoami|g" | \ sed "s|LOGLEVEL|$loglevel|g" \ > $prefix/lib/smb.conf$1 @@ -34,7 +34,7 @@ template_smb_conf_setup() { test_smb_conf_setup() { echo "test_smb_conf_setup: Configuring: " echo " PREFIX=$prefix" - echo " BUILD_FARM=$pwd" + echo " BUILD_FARM=$test_root" echo " WHOAMI=$whoami" echo " LOGLEVEL=$loglevel" echo " TREE=$tree" @@ -153,4 +153,3 @@ then loglevel=1 fi -# NB $pwd is not really `pwd` |