summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-03-22 16:22:21 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-03-22 16:23:48 +0000
commit58f67c004a8887ef760731e497630823c9a4dc92 (patch)
tree311c6d2ec7bae69254d0a169950063da3278da1e
parentcbffa7c4442c2630ff2c8522a3bd99e314365a08 (diff)
downloadfhs-dirs-58f67c004a8887ef760731e497630823c9a4dc92.tar.gz
fhs-dirs.morph: use whatever passes for sh
The shell may not be /bin/sh, so execute the script with whatever shell is in PATH
-rw-r--r--fhs-dirs.morph4
1 files changed, 2 insertions, 2 deletions
diff --git a/fhs-dirs.morph b/fhs-dirs.morph
index 6dd36ab..533c68a 100644
--- a/fhs-dirs.morph
+++ b/fhs-dirs.morph
@@ -3,8 +3,8 @@
"kind": "chunk",
"decription": "create the FHS 2.3 directory hierarchy and the usual files",
"install-commands": [
- "./create-fhs-dirs \"$DESTDIR\"",
- "./create-dev-nodes \"$DESTDIR\"",
+ "sh ./create-fhs-dirs \"$DESTDIR\"",
+ "sh ./create-dev-nodes \"$DESTDIR\"",
"install passwd \"$DESTDIR/etc/passwd\"",
"install inittab \"$DESTDIR/etc/inittab\"",
"install interfaces \"$DESTDIR/etc/network/interfaces\"",