Skip to content
Snippets Groups Projects
Commit 2147e12a authored by Alexandre Janniaux's avatar Alexandre Janniaux Committed by Marvin Scholz
Browse files

contrib: use rm -f instead of dash prefix

This is more silent and avoid messages like:
rm: cannot remove 'CMakeCache.txt': No such file or directory
make: [.mysofa] Error 1 (ignored)
parent 9234532d
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ fluidlite: fluidlite-$(FLUID_HASH).tar.xz .sum-fluidlite
$(MOVE)
.fluidlite: fluidlite toolchain.cmake
-cd $< && rm CMakeCache.txt
cd $< && rm -f CMakeCache.txt
cd $< && $(HOSTVARS) $(CMAKE)
cd $< && $(MAKE) install
touch $@
......@@ -24,7 +24,7 @@ mysofa: libmysofa-$(MYSOFA_VERSION).tar.gz .sum-mysofa
$(MOVE)
.mysofa: mysofa toolchain.cmake
-cd $< && rm CMakeCache.txt
cd $< && rm -f CMakeCache.txt
cd $< && $(HOSTVARS) $(CMAKE) -DBUILD_TESTS=OFF -DBUILD_SHARED_LIBS=OFF
cd $< && $(MAKE) install
touch $@
......
......@@ -35,7 +35,7 @@ endif
DEPS_projectM = glew $(DEPS_glew)
.projectM: projectM toolchain.cmake
-cd $< && rm CMakeCache.txt
cd $< && rm -f CMakeCache.txt
cd $< && $(HOSTVARS) $(CMAKE) \
-DINCLUDE-PROJECTM-LIBVISUAL:BOOL=OFF \
-DDISABLE_NATIVE_PRESETS:BOOL=ON \
......
......@@ -21,7 +21,7 @@ spatialaudio: spatialaudio-$(SPATIALAUDIO_VERSION).tar.bz2 .sum-spatialaudio
$(MOVE)
.spatialaudio: spatialaudio toolchain.cmake
-cd $< && rm CMakeCache.txt
cd $< && rm -f CMakeCache.txt
cd $< && $(HOSTVARS) $(CMAKE) -DMYSOFA_ROOT_DIR=$(PREFIX) -DHAVE_MIT_HRTF=OFF
cd $< && $(MAKE) install
touch $@
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