summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2011-09-18 16:35:00 -0400
committerDan McGee <dan@archlinux.org>2011-09-18 16:57:07 -0500
commitb1a09b93ef626995a009ae3144fc130cc60a4078 (patch)
treeac967ffe1a351121129ad168406e9974ccb31918 /configure.ac
parent223a92ca9da2efecefb200a828618747c0f5b03e (diff)
configure: Fix quoting in SEDINPLACE on Darwin
single quotes expanded to nothing, leaving us with a command that assumed the sed expression was the backup suffix. Use a pair of escaped double quotes, which survives automake and ends up properly in makepkg. Signed-off-by: Dave Reisner <dreisner@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 6bbc3159..32011794 100644
--- a/configure.ac
+++ b/configure.ac
@@ -225,7 +225,7 @@ STRIP_STATIC="--strip-debug"
case "${host_os}" in
*bsd*)
SIZECMD="stat -L -f %z"
- SEDINPLACE="sed -i ''"
+ SEDINPLACE="sed -i \"\""
;;
cygwin*)
host_os_cygwin=yes