Use command not $(command)

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@15026 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2002-11-20 04:03:06 +00:00
parent 46a8a070e8
commit 0e89d27c98
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2002-11-19 Adam Fedor <fedor@gnu.org>
* create_domain_dir_tree.sh (mydir): Use `command` not
$(command), which doesn't work with all sh's.
2002-11-15 Adam Fedor <fedor@gnu.org>
* common.make: Remove duplicate OBJC_RUNTIME_LIB and FOUNDATION_LIB

View file

@ -32,7 +32,7 @@ if [ -z "$*" ]; then
exit 0
fi
mydir=$(dirname "$0")
mydir=`dirname "$0"`
basepath="$1"
${mydir}/mkinstalldirs "$basepath" \