Skip to content

Commit

Permalink
Fied Makefiles to work when dirs names contain ' '.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dino Distefano authored and rgrig committed May 20, 2011
1 parent 73287b7 commit d70a5e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ clean:
ls -F $*/ | grep / | sed "s./.." | sed "s.^.-I $*/." > $*.subdirs

corestar_src:
ln -sf $(CORESTAR_HOME)/src corestar_src
ln -sf "$(CORESTAR_HOME)/src" corestar_src

.PHONY: build test test clean

Expand Down
2 changes: 1 addition & 1 deletion unit_tests/jimple_tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ clean::
@time ./runtest $*.jimple >/dev/null

%.test : %.jimple
@${JSTAR_HOME}/unit_tests/jimple_tests/test.sh "${JSTAR_HOME}" "$*"
@"${JSTAR_HOME}/unit_tests/jimple_tests/test.sh" "${JSTAR_HOME}" "$*"

.PHONY: test clean

0 comments on commit d70a5e3

Please sign in to comment.