Skip to content
This repository has been archived by the owner on Feb 10, 2024. It is now read-only.

Commit

Permalink
BUILD: fix quoting issue
Browse files Browse the repository at this point in the history
\"$@\" got malformed and interpreted by the Makefile
  • Loading branch information
hasufell committed Aug 28, 2013
1 parent ce5653d commit 7dea09c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/htm/Makefile.am
Expand Up @@ -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

0 comments on commit 7dea09c

Please sign in to comment.