From: Jens-Ulrik P. <ju...@us...> - 2004-07-27 08:23:09
|
Update of /cvsroot/gtk2hs/gtk2hs/mk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8134/mk Modified Files: common.mk Log Message: Use ABS_TOP for TARDIR to fix tarsource target. Index: common.mk =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/mk/common.mk,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- common.mk 16 Nov 2003 13:30:55 -0000 1.27 +++ common.mk 27 Jul 2004 08:22:58 -0000 1.28 @@ -6,9 +6,9 @@ SEDPIPE := $(SED) -e $(SEDNOUP) -e $(SEDNOID) -e $(PATHSED) # directories of interest -#TOP := $(shell echo $(TOP) | $(SEDPIPE)) +ABS_TOP := $(shell echo $(ABS_TOP) | $(SEDPIPE)) CURDIR := $(shell $(PWD) | $(SEDPIPE)) -TARDIR := $(subst $(TOP),$(TARNAME),$(CURDIR))/ +TARDIR := $(subst $(ABS_TOP),$(TARNAME),$(CURDIR))/ # directories of source files SUBDIRS ?= . |