Fix for gmp/Makefile, problems occur when /bin/sh is not bash
Bernie Pope
bjpop at csse.unimelb.edu.au
Sat Mar 1 23:45:41 EST 2008
Hi,
I'm away from a development machine, so I can't commit the change
myself. Apologies for that.
We should avoid bash features which are not valid in ordinary /bin/sh.
This popped up while I was building from the latest stable source
6.8.2 on Solaris.
See the diff below:
diff Makefile.old Makefile
67c67,68
< export PATH=`pwd`:$$PATH; \
---
> PATH=`pwd`:$$PATH; \
> export PATH; \
79c80,81
< export PATH=`pwd`:$$PATH; \
---
> PATH=`pwd`:$$PATH; \
> export PATH; \
More information about the Cvs-ghc
mailing list