Jeremy Shaw wrote:
Cool! What file(s) do I need to update? I just did a cvs update this was all I got:

$ cvs -q -z3 update ? CONTRIB/haskell-modes/hugs/.new.hugs-mode
U CONTRIB/haskell-modes/hugs/hugs-mode.el


Somehow I don't envision hugs-mode.el being part of the problem...

I guess you are using anonymous CVS, which is only a mirrored version of the "real thing", lagging up to one day behind IIRC. This is rather unfortunate and should probably be changed (Jeff?). Meanwhile I've attached a patch.

Btw, how useful is it to report bugs against cvs HEAD? I know different projects use cvs HEAD differently...

Bug reports for the HEAD are highly appreciated, although [EMAIL PROTECTED] is a more appropriate place for them. I'm not sure about its moderation policy, though.

Cheers,
   S.
Index: mk/package.mk
===================================================================
RCS file: /home/cvs/root/fptools/mk/package.mk,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- mk/package.mk       23 Jan 2004 13:37:40 -0000      1.35
+++ mk/package.mk       7 Feb 2004 14:08:57 -0000       1.36
@@ -1,5 +1,5 @@
 # -----------------------------------------------------------------------------
-# $Id: package.mk,v 1.35 2004/01/23 13:37:40 simonmar Exp $
+# $Id: package.mk,v 1.36 2004/02/07 14:08:57 panne Exp $
 
 ifneq "$(PACKAGE)" ""
 
@@ -24,11 +24,11 @@
 
 package.conf.inplace   : package.conf.in
        $(CPP) $(RAWCPP_FLAGS) -P $(PKGCONF_CPP_EXTRA_OPTS) -x c $(PACKAGE_CPP_OPTS) 
$< | \
-       sed -e 's/""//g' -e 's/, ]/ ]/g' >$@
+       sed -e 's/""//g' -e 's/\[ *,/[ /g' >$@
 
 package.conf.installed : package.conf.in
        $(CPP) $(RAWCPP_FLAGS) -P $(PKGCONF_CPP_EXTRA_OPTS) -DINSTALLING -x c 
$(PACKAGE_CPP_OPTS) $< | \
-       sed -e 's/""//g' -e 's/, ]/ ]/g' >$@
+       sed -e 's/""//g' -e 's/\[ *,/[ /g' >$@
 
 # we could be more accurate here and add a dependency on
 # ghc/driver/package.conf, but that doesn't work too well because of
_______________________________________________
Glasgow-haskell-bugs mailing list
[EMAIL PROTECTED]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs

Reply via email to