Commit 4e20b1a6 authored by Bodo Möller's avatar Bodo Möller
Browse files

Instead of telling both 'make' and the user that ranlib

errors can be tolerated, hide the error from 'make'.
This gives shorter output both if ranlib fails and if
it works.
parent cc5ba6a7
Loading
Loading
Loading
Loading
+1 −2
Original line number Original line Diff line number Diff line
@@ -91,8 +91,7 @@ links:


lib:	$(LIBOBJ)
lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
	@echo You may get an error following this line.  Please ignore.
	$(RANLIB) $(LIB) || echo Never mind.
	- $(RANLIB) $(LIB)
	@touch lib
	@touch lib


libs:
libs:
+1 −2
Original line number Original line Diff line number Diff line
@@ -70,8 +70,7 @@ all: lib


lib:	$(LIBOBJ)
lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
	@echo You may get an error following this line.  Please ignore.
	$(RANLIB) $(LIB) || echo Never mind.
	- $(RANLIB) $(LIB)
	@touch lib
	@touch lib


files:
files:
+1 −2
Original line number Original line Diff line number Diff line
@@ -45,8 +45,7 @@ all: lib


lib:	$(LIBOBJ)
lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
	@echo You may get an error following this line.  Please ignore.
	$(RANLIB) $(LIB) || echo Never mind.
	- $(RANLIB) $(LIB)
	@touch lib
	@touch lib


# elf
# elf
+1 −2
Original line number Original line Diff line number Diff line
@@ -50,8 +50,7 @@ all: lib


lib:	$(LIBOBJ)
lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
	@echo You may get an error following this line.  Please ignore.
	$(RANLIB) $(LIB) || echo Never mind.
	- $(RANLIB) $(LIB)
	@touch lib
	@touch lib


files:
files:
+1 −2
Original line number Original line Diff line number Diff line
@@ -69,8 +69,7 @@ bnbug: bnbug.c ../../libcrypto.a top


lib:	$(LIBOBJ)
lib:	$(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
	$(AR) $(LIB) $(LIBOBJ)
	@echo You may get an error following this line.  Please ignore.
	$(RANLIB) $(LIB) || echo Never mind.
	- $(RANLIB) $(LIB)
	@touch lib
	@touch lib


# elf
# elf
Loading