Update of /cvsroot/linux-decnet/dnprogs/libvaxdata/linux
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv25036
Modified Files:
makefile.linux
Log Message:
Remove -c from ar command as it seems to break RHEL3
Index: makefile.linux
===================================================================
RCS file: /cvsroot/linux-decnet/dnprogs/libvaxdata/linux/makefile.linux,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** makefile.linux 25 Oct 2005 07:32:13 -0000 1.1
--- makefile.linux 2 Aug 2006 15:46:15 -0000 1.2
***************
*** 34,37 ****
--- 34,38 ----
# 2-Sep-2005 L. M. Baker Original version (from make.libvfbb). #
# 5-Oct-2005 L. M. Baker Use custom compile rule for is_little_endian. #
+ # 2-Aug-2006 P. J. Caulfield Remove -c from ar command. #
# #
################################################################################
***************
*** 80,84 ****
$(LIB_NAME).a: $(OBJS)
! ar -r -c $(LIB_NAME).a $(OBJS)
ranlib $(LIB_NAME).a
--- 81,85 ----
$(LIB_NAME).a: $(OBJS)
! ar -r $(LIB_NAME).a $(OBJS)
ranlib $(LIB_NAME).a
|