Commit 4e20a4e6 authored by Richard Levitte's avatar Richard Levitte
Browse files

'ranlib' doesn't always run on some systems. That's actually

acceptable, since all that happens if it fails is a library with
an index, which makes linking slower, but still working correctly.
parent 9ef9e785
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -90,7 +90,8 @@ links:

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

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

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

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

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

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

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

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

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

# elf
Loading