From dc6ba4ba71995d0f3c5b126397571d2b5e771dee Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Fri, 9 Jul 2010 09:15:21 +0000 Subject: [PATCH] quiet some new spewage --- libffi/ghc.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libffi/ghc.mk b/libffi/ghc.mk index 10e2ee3..f136600 100644 --- a/libffi/ghc.mk +++ b/libffi/ghc.mk @@ -156,7 +156,7 @@ endif touch $@ $(libffi_STATIC_LIB): $(libffi_STAMP_BUILD) - [ -f $@ ] + @test -f $@ # Rename libffi.a to libHSffi.a libffi/dist-install/build/libHSffi.a libffi/dist-install/build/libHSffi_p.a: $(libffi_STATIC_LIB) @@ -180,7 +180,7 @@ $(eval $(call all-target,libffi,libffi/dist-install/build/HSffi.o)) ifeq "$(BuildSharedLibs)" "YES" ifeq "$(Windows)" "YES" libffi/libffi.dll.a $(libffi_HS_DYN_LIB): $(libffi_STAMP_BUILD) - [ -f $@ ] + @test -f $@ # Windows libtool creates .dll, and as we already patched that # there is no need to copy from libffi.dll to libHSffi...dll. @@ -193,7 +193,7 @@ $(eval $(call all-target,libffi,$(libffi_HS_DYN_LIB).a)) else $(libffi_DYNAMIC_LIBS): $(libffi_STAMP_BUILD) - [ -f $@ ] + @test -f $@ # Rename libffi.so to libHSffi...so $(libffi_HS_DYN_LIB): $(libffi_DYNAMIC_LIBS) | $$(dir $$@)/. -- 1.7.10.4