From e60ccc0eba90aa4731663269d3fab32f0a32d7d2 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Wed, 15 Sep 2010 10:57:12 +0000 Subject: [PATCH] eliminate clutter from make output --- libffi/ghc.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libffi/ghc.mk b/libffi/ghc.mk index 7a4887e..8001fb2 100644 --- a/libffi/ghc.mk +++ b/libffi/ghc.mk @@ -156,7 +156,7 @@ endif touch $@ $(libffi_STATIC_LIB): $(libffi_STAMP_BUILD) - test -f $@ + @test -f $@ || { echo "$< exits, but $@ does not."; echo "Suggest removing $<."; exit 1; } # 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) - test -f $@ + @test -f $@ || { echo "$< exits, but $@ does not."; echo "Suggest removing $<."; exit 1; } # 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) - test -f $@ + @test -f $@ || { echo "$< exits, but $@ does not."; echo "Suggest removing $<."; exit 1; } # Rename libffi.so to libHSffi...so $(libffi_HS_DYN_LIB): $(libffi_DYNAMIC_LIBS) | $$(dir $$@)/. -- 1.7.10.4