From 233514106dcde5ac61a70f1043de563122e2f1c9 Mon Sep 17 00:00:00 2001 From: Richard Maw Date: Thu, 8 Aug 2013 17:31:08 +0100 Subject: morphology: fix regression in sshd 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 --- openssh.morph | 4 ++-- 1 file 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" -- cgit v1.2.1