[vlc-devel] [PATCH] configure: do not escape double quation mark
KO Myung-Hun
komh78 at gmail.com
Wed Jul 30 05:31:11 CEST 2014
This fixes the following error.
-----
sed: -e expression #1, char 1: unknown command: `"'
-----
---
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index de07e28..ddf4770 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4274,7 +4274,7 @@ echo "#! $SHELL
rm -f .error\$\$
ERROR=0
export PATH=\"$PATH\" LANG=C
-($MAKE V=1 \$@ 2>&1 || touch .error\$\$)| `sed -ne \"s/^top_srcdir *= *//p\" < Makefile`/extras/buildsystem/make.pl
+($MAKE V=1 \$@ 2>&1 || touch .error\$\$)| `sed -ne "s/^top_srcdir *= *//p" < Makefile`/extras/buildsystem/make.pl
test -f .error\$\$ && ERROR=1
rm -f .error\$\$
exit \$ERROR" >compile
--
1.7.3.2
More information about the vlc-devel
mailing list