From: <as...@us...> - 2003-11-16 13:31:39
|
Update of /cvsroot/gtk2hs/gtk2hs/mk In directory sc8-pr-cvs1:/tmp/cvs-serv15348/mk Modified Files: common.mk Log Message: Path mangeling, library names and parser fixes for Windows. Index: common.mk =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/mk/common.mk,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- common.mk 11 Nov 2003 12:04:26 -0000 1.26 +++ common.mk 16 Nov 2003 13:30:55 -0000 1.27 @@ -25,10 +25,10 @@ INST_INCLDIR ?= $(INST_HIDIR) INST_BINDIR ?= $(addsuffix $(INSTALLDIROK),$(bindir)) -#INST_HIDIR := $(shell echo $(INST_HIDIR) | $(SEDPIPE)) -#INST_LIBDIR := $(shell echo $(INST_LIBDIR) | $(SEDPIPE)) -#INST_INCLDIR := $(shell echo $(INST_INCLDIR) | $(SEDPIPE)) -#INST_BINDIR := $(shell echo $(INST_BINDIR) | $(SEDPIPE)) +INST_HIDIR := $(shell echo $(INST_HIDIR) | $(SEDPIPE)) +INST_LIBDIR := $(shell echo $(INST_LIBDIR) | $(SEDPIPE)) +INST_INCLDIR := $(shell echo $(INST_INCLDIR) | $(SEDPIPE)) +INST_BINDIR := $(shell echo $(INST_BINDIR) | $(SEDPIPE)) # these values are used for building a library in-place INPL_HIDIR := $(sort $(patsubst %/.,%,$(patsubst %/,%,\ |