BUILD: fix quoting issue
\"$@\" got malformed and interpreted by the Makefile
This commit is contained in:
parent
ce5653d75c
commit
7dea09c371
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user