]> sigrok.org Git - sigrok-firmware-fx2lafw.git/commitdiff
Makefiles: Add missing "2>/dev/null" in some places.
authorUwe Hermann <redacted>
Sun, 22 Jul 2012 16:22:15 +0000 (18:22 +0200)
committerUwe Hermann <redacted>
Sun, 22 Jul 2012 16:22:15 +0000 (18:22 +0200)
fx2lib/lib/Makefile
fx2lib/lib/fx2.mk

index c8f19d553decf0d8a633e2e7861c12e2d6355fca..d894a517e4d17e9bd80b9904a38d1cf6e139000f 100644 (file)
@@ -21,15 +21,15 @@ SDCC = sdcc -mmcs51 $(SDCCFLAGS)
 LIBS = fx2.lib
 
 # The sdcc 8051 assembler binary has/had different names.
-ifneq ($(shell which sdas8051),)
+ifneq ($(shell which sdas8051 2>/dev/null),)
 # Newer sdcc, Debian / Ubuntu
 SDAS8051 = sdas8051
 endif
-ifneq ($(shell which sdcc-sdas8051),)
+ifneq ($(shell which sdcc-sdas8051 2>/dev/null),)
 # Newer sdcc, Fedora
 SDAS8051 = sdcc-sdas8051
 endif
-ifneq ($(shell which asx8051),)
+ifneq ($(shell which asx8051 2>/dev/null),)
 # Older sdcc
 SDAS8051 = asx8051
 endif
index d7687a4503167bda7b891721d770b84934ad3916..b001b932a82519d705d9d54ab08ce9d48d385698 100644 (file)
 #
 
 # The sdcc 8051 assembler binary has/had different names.
-ifneq ($(shell which sdas8051),)
+ifneq ($(shell which sdas8051 2>/dev/null),)
 # Newer sdcc, Debian / Ubuntu
 SDAS8051 = sdas8051
 endif
-ifneq ($(shell which sdcc-sdas8051),)
+ifneq ($(shell which sdcc-sdas8051 2>/dev/null),)
 # Newer sdcc, Fedora
 SDAS8051 = sdcc-sdas8051
 endif
-ifneq ($(shell which asx8051),)
+ifneq ($(shell which asx8051 2>/dev/null),)
 # Older sdcc
 SDAS8051 = asx8051
 endif