summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Thursfield <sam.thursfield@codethink.co.uk>2015-05-08 11:32:37 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2015-05-08 11:32:37 +0000
commit524b17f6a0aba61a80ec7f538d72ad26b8d157a6 (patch)
tree65e2a6107170b2fd83609ae452b5caf41dd2c6ce
parentf9a0607b654ee1adb85f4c1bfedd3571a22ac21a (diff)
downloadmorph-524b17f6a0aba61a80ec7f538d72ad26b8d157a6.tar.gz
Fix mistake in sysroot.write
The * should not be in quotes. Change-Id: Ieebdc7532ba1bff5ba9742f72440ed00b0c0de2a
-rwxr-xr-xmorphlib/exts/sysroot.write2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/exts/sysroot.write b/morphlib/exts/sysroot.write
index 019edbe9..46f1a780 100755
--- a/morphlib/exts/sysroot.write
+++ b/morphlib/exts/sysroot.write
@@ -19,4 +19,4 @@ set -eu
mkdir -p "$2"
-cp -a "$1/*" "$2"
+cp -a "$1"/* "$2"