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>
This commit is contained in:
Dave Reisner 2011-09-18 16:35:00 -04:00 committed by Dan McGee
parent 223a92ca9d
commit b1a09b93ef
1 changed files with 1 additions and 1 deletions

View File

@ -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