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 Diff line number Diff line
@@ -91,8 +91,7 @@ links:

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

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

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

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

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

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

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

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

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

# elf
Loading