Skip to content
Snippets Groups Projects
Commit 82dd50c0 authored by Allan Blanchard's avatar Allan Blanchard
Browse files

Merge branch 'jev/bug/issue-2687-mac-ivette-launch-script-makefile-escaping' into 'master'

Issue #2687: Fix Makefile escaping of ivette shell wrappers $@ on macOS

See merge request frama-c/frama-c!4471
parents a223112a 8a58021b
No related branches found
No related tags found
No related merge requests found
...@@ -238,7 +238,7 @@ install: ...@@ -238,7 +238,7 @@ install:
@cp ivette-macos.sh dist/ivette.sh @cp ivette-macos.sh dist/ivette.sh
@echo "exec open -na $(LIBDIR)/frama-c/Ivette.app --args\\" >> dist/ivette.sh @echo "exec open -na $(LIBDIR)/frama-c/Ivette.app --args\\" >> dist/ivette.sh
@echo " --command $(BINDIR)/frama-c\\" >> dist/ivette.sh @echo " --command $(BINDIR)/frama-c\\" >> dist/ivette.sh
@echo " --working \$$PWD \"\$@\"" >> dist/ivette.sh @echo " --working \$$PWD \"\$$@\"" >> dist/ivette.sh
@mkdir -p $(BINDIR) @mkdir -p $(BINDIR)
@install dist/ivette.sh $(BINDIR)/ivette @install dist/ivette.sh $(BINDIR)/ivette
@rm -fr $(IVETTE_DIST) @rm -fr $(IVETTE_DIST)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment