diff options
author | Björn Gustavsson <[email protected]> | 2010-01-23 12:12:23 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-01-29 17:43:37 +0100 |
commit | b8b3a8c7d7d01cc4126dc4961c4f5de6afc1b066 (patch) | |
tree | 839a79cfe39ca5665975de1f99d6489380b7e87a /lib/stdlib/test/Makefile | |
parent | cbc470bc904693618cc33ac16cc577401906b2f0 (diff) | |
download | otp-b8b3a8c7d7d01cc4126dc4961c4f5de6afc1b066.tar.gz otp-b8b3a8c7d7d01cc4126dc4961c4f5de6afc1b066.tar.bz2 otp-b8b3a8c7d7d01cc4126dc4961c4f5de6afc1b066.zip |
Test suites: fix creation of Emakefiles
The Emakefiles in some test suite directories are only appended
to, never created from scratch, which can cause problems
especially when swithching branches in a git repository.
Diffstat (limited to 'lib/stdlib/test/Makefile')
-rw-r--r-- | lib/stdlib/test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/test/Makefile b/lib/stdlib/test/Makefile index ac8cbba375..9beac93eb8 100644 --- a/lib/stdlib/test/Makefile +++ b/lib/stdlib/test/Makefile @@ -110,7 +110,7 @@ COVERFILE=stdlib.cover make_emakefile: $(ERL_TOP)/make/make_emakefile $(ERL_COMPILE_FLAGS) -o$(EBIN) $(MODULES) \ - >> $(EMAKEFILE) + > $(EMAKEFILE) tests debug opt: make_emakefile erl $(ERL_MAKE_FLAGS) -make |