From 7dea09c3714d62777ef7bdc82013af6deaa3a9db Mon Sep 17 00:00:00 2001 From: hasufell Date: Wed, 28 Aug 2013 01:12:36 +0200 Subject: BUILD: fix quoting issue \"$@\" got malformed and interpreted by the Makefile --- src/htm/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/htm/Makefile.am b/src/htm/Makefile.am index 4a7c54ff..be564f6d 100644 --- a/src/htm/Makefile.am +++ b/src/htm/Makefile.am @@ -7,8 +7,8 @@ thememan.exe: htm-mono.csproj $(MDTOOL) $(MDTOOL_OPTS) build $< thememan: - @echo "#!/bin/sh" > $@ - @echo "exec mono /usr/bin/thememan.exe \"$@\"" >> $@ + @echo '#!/bin/sh' > $@ + @echo 'exec mono /usr/bin/thememan.exe "$$@"' >> $@ clean-local: rm -f thememan.exe thememan.exe.config thememan.exe.mdb thememan Main.resources -- cgit 1.4.1