From: Jens-Ulrik P. <ju...@us...> - 2004-07-28 11:13:50
|
Update of /cvsroot/gtk2hs/gtk2hs/mk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23610/mk Modified Files: library.mk Log Message: Revert this change since it doesn't give up anything and not preserving the timestamp break MacOS: * mk/library.mk (installfiles): Install lib.a as is, ie not mod 644 and don't reset timestamp. Index: library.mk =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/mk/library.mk,v retrieving revision 1.23 retrieving revision 1.24 diff -u -d -r1.23 -r1.24 --- library.mk 28 Jul 2004 02:38:53 -0000 1.23 +++ library.mk 28 Jul 2004 11:13:40 -0000 1.24 @@ -64,7 +64,8 @@ installfiles : $(PACKAGENAME).conf for file in $(ALLHSFILES:.hs=.hi); do \ $(INSTALL_DATA) $$file $(DESTDIR)$(INST_HIDIR); done; - $(INSTALL) $(TARGETOK) $(DESTDIR)$(INST_LIBDIR) + $(INSTALL_DATA) $(TARGETOK) $(DESTDIR)$(INST_LIBDIR) + $(TOUCH) -r $(TARGETOK) $(DESTDIR)$(INST_LIBDIR)/$(TARGETOK) ifneq ($(strip $(STUBHFILES) $(EXTRA_HFILESOK)),) for file in $(STUBHFILES) $(EXTRA_HFILESOK); do \ $(INSTALL_DATA) $$file $(DESTDIR)$(INST_INCLDIR); done; |