mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
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:
parent
46a8a070e8
commit
0e89d27c98
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -32,7 +32,7 @@ if [ -z "$*" ]; then
|
|||
exit 0
|
||||
fi
|
||||
|
||||
mydir=$(dirname "$0")
|
||||
mydir=`dirname "$0"`
|
||||
basepath="$1"
|
||||
|
||||
${mydir}/mkinstalldirs "$basepath" \
|
||||
|
|
Loading…
Reference in a new issue