diff options
author | Ian Lynagh <igloo@earth.li> | 2011-12-20 17:36:25 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-01-02 20:32:37 +0000 |
commit | dc6f3a487331720b42b7e6c14340200c5ffcdd6f (patch) | |
tree | 3ce8a5728e24b444a20c0b1eb1fbda10699e2d42 /ghc.mk | |
parent | b0c0205e3c0dfefc3ffbd49d22160ad5d624ee1f (diff) | |
download | haskell-dc6f3a487331720b42b7e6c14340200c5ffcdd6f.tar.gz |
Fix typo in Makefile
sdist output was being redirected to $src_log, which presumably
evaluated to rc_log.
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |