diff options
| author | Simon Tatham <anakin@pobox.com> | 2013-06-19 19:21:36 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2013-06-19 19:21:36 +0000 |
| commit | 5732d1d2674573ce96b2203aec512e57533e64d1 (patch) | |
| tree | 74a350c0086b9a4ae28eb39c48b6d5f88730e37c | |
| parent | c4ec358d6e237a44d380ac998ffdef9932fa59b7 (diff) | |
| download | puzzles-5732d1d2674573ce96b2203aec512e57533e64d1.zip puzzles-5732d1d2674573ce96b2203aec512e57533e64d1.tar.gz puzzles-5732d1d2674573ce96b2203aec512e57533e64d1.tar.bz2 puzzles-5732d1d2674573ce96b2203aec512e57533e64d1.tar.xz | |
Remove stray bashisms from the NestedVM makefile.
[originally from svn r9872]
| -rw-r--r-- | Recipe | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -192,8 +192,11 @@ install: org: mkdir -p org/ibex/nestedvm/util - cp $(NESTEDVM)/build/org/ibex/nestedvm/{Registers,UsermodeConstants,Runtime*}.class org/ibex/nestedvm - cp $(NESTEDVM)/build/org/ibex/nestedvm/util/{Platform*,Seekable*}.class org/ibex/nestedvm/util + cp $(NESTEDVM)/build/org/ibex/nestedvm/Registers.class org/ibex/nestedvm + cp $(NESTEDVM)/build/org/ibex/nestedvm/UsermodeConstants.class org/ibex/nestedvm + cp $(NESTEDVM)/build/org/ibex/nestedvm/Runtime*.class org/ibex/nestedvm + cp $(NESTEDVM)/build/org/ibex/nestedvm/util/Platform*.class org/ibex/nestedvm/util + cp $(NESTEDVM)/build/org/ibex/nestedvm/util/Seekable*.class org/ibex/nestedvm/util echo "Main-Class: PuzzleApplet" >applet.manifest PuzzleApplet.class: PuzzleApplet.java org |