Commit ad3d26bf authored by Rafaël Carré's avatar Rafaël Carré Committed by Rémi Denis-Courmont

compile: don't escape &

(cherry picked from commit 5a5559dfcde0c1b9a5feb3a3831f460a5f82d21e)
parent 56b900c0
...@@ -4324,7 +4324,7 @@ rm -f .error\$\$ ...@@ -4324,7 +4324,7 @@ rm -f .error\$\$
ERROR=0 ERROR=0
export PATH=\"$PATH\" LANG=C 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 test -f .error\$\$ && ERROR=1
rm -f .error\$\$ rm -f .error\$\$
exit \$ERROR" >compile exit \$ERROR" >compile
chmod a+x compile chmod a+x compile
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment