From: Jens-Ulrik P. <ju...@us...> - 2004-07-28 02:39:04
|
Update of /cvsroot/gtk2hs/gtk2hs/mk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14618/mk Modified Files: library.mk Log Message: 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.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- library.mk 17 Nov 2003 17:32:29 -0000 1.22 +++ library.mk 28 Jul 2004 02:38:53 -0000 1.23 @@ -64,8 +64,7 @@ installfiles : $(PACKAGENAME).conf for file in $(ALLHSFILES:.hs=.hi); do \ $(INSTALL_DATA) $$file $(DESTDIR)$(INST_HIDIR); done; - $(INSTALL_DATA) $(TARGETOK) $(DESTDIR)$(INST_LIBDIR) - $(TOUCH) -r $(TARGETOK) $(DESTDIR)$(INST_LIBDIR)/$(TARGETOK) + $(INSTALL) $(TARGETOK) $(DESTDIR)$(INST_LIBDIR) ifneq ($(strip $(STUBHFILES) $(EXTRA_HFILESOK)),) for file in $(STUBHFILES) $(EXTRA_HFILESOK); do \ $(INSTALL_DATA) $$file $(DESTDIR)$(INST_INCLDIR); done; |