diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-02-08 15:32:59 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-02-08 15:32:59 +0000 |
commit | 3972d4fc6dae2e286896557f8da79cbd4124d583 (patch) | |
tree | 21bcb00aefcf57cd9c6fa940de78eb2feabd3af1 /distrib | |
parent | a50e6825494446fdf579a7580d402c99e013657e (diff) | |
download | haskell-3972d4fc6dae2e286896557f8da79cbd4124d583.tar.gz |
fix installation of binary dist when the PS docs aren't present
Fixes #660
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/Makefile-bin.in | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/distrib/Makefile-bin.in b/distrib/Makefile-bin.in index 2175b74903..3e4c4edd6f 100644 --- a/distrib/Makefile-bin.in +++ b/distrib/Makefile-bin.in @@ -1,3 +1,12 @@ +package = ghc +version = 6.5.20060205 +PACKAGE_SH_SCRIPTS = ghc-6.5.20060205 ghci-6.5.20060205 ghc-pkg-6.5.20060205 hsc2hs +PACKAGE_PRL_SCRIPTS = ghcprof +PACKAGE_LIB_PRL_SCRIPTS = ghc-asm ghc-split +PACKAGE_LIB_SPLICED_FILES = package.conf +PACKAGE_BINS = hp2ps runghc +PACKAGE_OPT_BINS = runhaskell +PACKAGE_LINKS = ghc ghci ghc-pkg # # @configure_input@ # @@ -272,7 +281,9 @@ show-install-setup: install-docs : install-dirs-docs if test -d share/html ; then $(CP) -r share/html/* $(htmldir) ; fi for i in share/*.ps; do \ - $(CP) $$i $(psdir) ; \ + if test -f "$$i"; then \ + $(CP) $$i $(psdir) ; \ + fi \ done install-dirs-docs: |