diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-09-18 22:35:00 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-09-18 23:57:07 +0200 |
commit | b1a09b93ef626995a009ae3144fc130cc60a4078 (patch) | |
tree | ac967ffe1a351121129ad168406e9974ccb31918 /configure.ac | |
parent | 223a92ca9da2efecefb200a828618747c0f5b03e (diff) | |
download | pacman-b1a09b93ef626995a009ae3144fc130cc60a4078.tar.gz pacman-b1a09b93ef626995a009ae3144fc130cc60a4078.tar.xz |
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.ac | 2 |
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 |