From b1a09b93ef626995a009ae3144fc130cc60a4078 Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sun, 18 Sep 2011 16:35:00 -0400 Subject: 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 Signed-off-by: Dan McGee --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') 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 -- cgit v1.2.3