The unified diff between revisions [66d004ad..] and [2af95f00..] is displayed below. It can also be downloaded as a raw diff.

#
#
# patch "Makefile.in"
#  from [e5a7155ca2d337d40c64a637035b4fc17f1cb30b]
#    to [e99b06dd9ffd9991395875c714fe1172b92c3f8d]
#
============================================================
--- Makefile.in	e5a7155ca2d337d40c64a637035b4fc17f1cb30b
+++ Makefile.in	e99b06dd9ffd9991395875c714fe1172b92c3f8d
@@ -87,7 +87,7 @@ $(LIBNAME):  $(OBJECTS)

 $(LIBNAME):  $(OBJECTS)
 	$(AR) $(ARFLAGS) $@ $(OBJECTS)
-	ranlib $@
+	$(RANLIB) $@

 #make a profiled library (takes a while!!!)
 #
@@ -110,7 +110,7 @@ profiled_single:
 	rm -f *.o ltmtest
 	$(CC) $(CFLAGS) -fbranch-probabilities -DTESTING -c mpi.c -o mpi.o
 	$(AR) $(ARFLAGS) $(LIBNAME) mpi.o
-	ranlib $(LIBNAME)
+	$(RANLIB) $(LIBNAME)

 install: $(LIBNAME)
 	install -d -g $(GROUP) -o $(USER) $(DESTDIR)$(LIBPATH)