diff options
author | hasufell <hasufell@posteo.de> | 2013-08-28 01:12:36 +0200 |
---|---|---|
committer | hasufell <hasufell@posteo.de> | 2013-08-28 14:30:57 +0200 |
commit | 7dea09c3714d62777ef7bdc82013af6deaa3a9db (patch) | |
tree | 88517be4d53173f861eb762f0a2e9c18aa7264a6 | |
parent | ce5653d75c29954e68c9c912e1c731306f9306fa (diff) |
BUILD: fix quoting issue
\"$@\" got malformed and interpreted by the Makefile
-rw-r--r-- | src/htm/Makefile.am | 4 |
1 files 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 |