diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-09-18 23:29:03 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-09-18 23:29:03 +0000 |
commit | 6c1a6b200ba91f6dfb41711d65e824529079ca0a (patch) | |
tree | 33d15e2587241651041cbaf4f498b4ff24eb00e3 /mk | |
parent | f23e95f72f1a8dcdf1532697a1116b0699a3f68a (diff) | |
download | haskell-6c1a6b200ba91f6dfb41711d65e824529079ca0a.tar.gz |
use ghc-pkg --force-files, and update command-line syntax
Diffstat (limited to 'mk')
-rw-r--r-- | mk/package.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/package.mk b/mk/package.mk index cbec48dd80..ce90aec9ce 100644 --- a/mk/package.mk +++ b/mk/package.mk @@ -119,8 +119,8 @@ boot all :: $(STAMP_PKG_CONF) endif $(STAMP_PKG_CONF) : package.conf.inplace package.conf.installed - $(GHC_PKG_INPLACE) --force --update-package <package.conf.inplace - $(GHC_PKG_INPLACE) -f $(GHC_DRIVER_DIR)/package.conf --force --update-package <package.conf.installed + $(GHC_PKG_INPLACE) update - --force-files <package.conf.inplace + $(GHC_PKG_INPLACE) update - -f $(GHC_DRIVER_DIR)/package.conf --force-files <package.conf.installed @touch $(STAMP_PKG_CONF) CLEAN_FILES += package.conf.installed package.conf.inplace |