From: Duncan C. <dun...@us...> - 2005-03-18 14:25:45
|
Update of /cvsroot/gtk2hs/gtk2hs/mk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8970/mk Modified Files: common.mk Log Message: Temporary fix for building with GHC 6.4. Temporary until we fix c2hs to not override the pragmas at the top of generated files. Index: common.mk =================================================================== RCS file: /cvsroot/gtk2hs/gtk2hs/mk/common.mk,v retrieving revision 1.55 retrieving revision 1.56 diff -u -d -r1.55 -r1.56 --- common.mk 7 Feb 2005 15:39:49 -0000 1.55 +++ common.mk 18 Mar 2005 14:25:36 -0000 1.56 @@ -65,7 +65,7 @@ touch $@; \ $(if $(word 2,$($(PKG)_HSFILES)),\ $(MAKE) $(AM_MAKEFLAGS) $($(PKG)_HSFILES); \ - $(HC) -M $(addprefix -optdep,-f $@) \ + $(HC) -M $(addprefix -optdep,-f $@) -fglasgow-exts \ $(HCFLAGS) $($(PKG)_HCFLAGS) -i$(pkgVPATH) \ $(AM_CPPFLAGS) $($(PKG)_CPPFLAGS) $($(PKG)_HSFILES);) \ fi;)) |