Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : ghc-7.4
http://hackage.haskell.org/trac/ghc/changeset/2f0f55d23fd7c9e61fb09ea3579a42a42d21cee1 >--------------------------------------------------------------- commit 2f0f55d23fd7c9e61fb09ea3579a42a42d21cee1 Author: Ian Lynagh <[email protected]> Date: Tue Dec 20 17:36:25 2011 +0000 Fix typo in Makefile sdist output was being redirected to $src_log, which presumably evaluated to rc_log. >--------------------------------------------------------------- ghc.mk | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ghc.mk b/ghc.mk index a2941d4..3805bbe 100644 --- a/ghc.mk +++ b/ghc.mk @@ -1096,7 +1096,7 @@ sdist-prep : .PHONY: sdist sdist : sdist-prep - "$(TAR_CMD)" chf - $(SRC_DIST_NAME) 2>$src_log | bzip2 >$(TOP)/$(SRC_DIST_TARBALL) + "$(TAR_CMD)" chf - $(SRC_DIST_NAME) 2>src_log | bzip2 >$(TOP)/$(SRC_DIST_TARBALL) sdist-manifest : $(SRC_DIST_TARBALL) tar tjf $(SRC_DIST_TARBALL) | sed "s|^ghc-$(ProjectVersion)/||" | sort >sdist-manifest _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
