summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2013-08-08 17:31:08 +0100
committerRichard Maw <richard.maw@codethink.co.uk>2013-08-08 17:33:19 +0100
commit233514106dcde5ac61a70f1043de563122e2f1c9 (patch)
tree3bf9ac295b0888d910558436378158df0809fe36
parent80296aea845f2c4f269e6a26dd951feea9771602 (diff)
downloadopenssh-233514106dcde5ac61a70f1043de563122e2f1c9.tar.gz
morphology: fix regression in sshdbaserock/morph
When I converted the morphology to YAML I did a little cleanup of the command lines, to make them more aesthetically pleasing. In the process of doing this I changed how some options were quoted, and did not notice that I had changed an argument with an interpolation. Reviewed-by: Lars Wirzenius
-rw-r--r--openssh.morph4
1 files changed, 2 insertions, 2 deletions
diff --git a/openssh.morph b/openssh.morph
index 085c6dfa..6c759cb0 100644
--- a/openssh.morph
+++ b/openssh.morph
@@ -11,12 +11,12 @@ configure-commands:
build-commands:
- make
- |
- sed -e 's|@prefix@|$PREFIX|g' \
+ sed -e "s|@prefix@|$PREFIX|g" \
-e 's|@STARTUP_SCRIPT_SHELL@|/bin/sh|g' \
-e 's|@sysconfdir@|/etc/ssh|g' \
-e 's|@COMMENT_OUT_ECC@||g' \
sshd-keygen.in >sshd-keygen
-- sed -e 's|@prefix@|$PREFIX|g' opensshd.service.in >opensshd.service
+- sed -e "s|@prefix@|$PREFIX|g" opensshd.service.in >opensshd.service
install-commands:
- make DESTDIR="$DESTDIR" install
- mkdir -p "$DESTDIR/$PREFIX/sbin"