diff options
author | Ben Gamari <ben@smart-cactus.org> | 2021-02-03 23:57:26 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-04-02 05:15:23 -0400 |
commit | 8ef6eaf78ee04582ec4e1b4814b215a8a66cb9fa (patch) | |
tree | 3223f457d7786598f781afc038e13f5cc30a367a | |
parent | 07393306169d736a2e5b2f1f1fbc0fdcc2c1a235 (diff) | |
download | haskell-8ef6eaf78ee04582ec4e1b4814b215a8a66cb9fa.tar.gz |
sdist: Fix packaging of Windows tarballs
These now live in the ghc-tarballs/mingw-w64 directory.
Fixes #19316.
-rw-r--r-- | ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1253,7 +1253,7 @@ sdist-windows-tarballs-prep : mkdir -p $(SRC_DIST_WINDOWS_TARBALLS_ROOT) mkdir -p $(SRC_DIST_WINDOWS_TARBALLS_DIR) mkdir -p $(SRC_DIST_WINDOWS_TARBALLS_DIR)/ghc-tarballs - cd $(SRC_DIST_WINDOWS_TARBALLS_DIR)/ghc-tarballs && ln -s $(TOP)/ghc-tarballs/i686 . && ln -s $(TOP)/ghc-tarballs/x86_64 + cd $(SRC_DIST_WINDOWS_TARBALLS_DIR)/ghc-tarballs && ln -s $(TOP)/ghc-tarballs/mingw-w64 . $(call removeTrees,$(SRC_DIST_WINDOWS_TARBALLS_DIR)/ghc-tarballs/.git) .PHONY: sdist-testsuite-prep |