summaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
authorBart Jacobs <bart.jacobs@cs.kuleuven.be>2016-01-18 11:06:23 +0100
committerBart Jacobs <bart.jacobs@cs.kuleuven.be>2016-01-18 11:06:23 +0100
commit608bd115ffc3d5640eaaa0e3ba218427a833898a (patch)
tree7addbd31190ef2281d4aa71af0658f7c3453b7ac /testsuite
parenteec8d96de55abdaf1d975c35ee0cafb09780c77a (diff)
downloadocaml-608bd115ffc3d5640eaaa0e3ba218427a833898a.tar.gz
Fixed bug in 'clean' script
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/tests/unwind/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/unwind/Makefile b/testsuite/tests/unwind/Makefile
index 30fc396458..4a59aa4965 100644
--- a/testsuite/tests/unwind/Makefile
+++ b/testsuite/tests/unwind/Makefile
@@ -3,7 +3,7 @@ default:
native_macosx_tests:
@printf " ... testing stack unwinding:"; \
- $(MAKE) clean; $(MAKE) unwind_test && \
+ $(MAKE) clean ; $(MAKE) unwind_test && \
./unwind_test >/dev/null 2>&1 && echo " => passed" || echo " => failed"
unwind_test:
@@ -14,6 +14,6 @@ unwind_test:
@ocamlopt -cclib -Wl,-keep_dwarf_unwind -o unwind_test mylib.cmx driver.cmx stack_walker.o
clean:
- @rm *.cm* *.o unwind_test > /dev/null 2>&1
+ @rm -f *.cm* *.o unwind_test
include $(BASEDIR)/makefiles/Makefile.common