diff options
author | simonmar <unknown> | 2001-04-24 10:06:18 +0000 |
---|---|---|
committer | simonmar <unknown> | 2001-04-24 10:06:18 +0000 |
commit | 4ca3e08460d0b824cc819fdfb910116858dbcb3f (patch) | |
tree | faac78e31dc53d95c81370ff441e49efa6f00a1d /distrib/Makefile-bin.in | |
parent | bb169ef2699516b14240652c5a285156af468da1 (diff) | |
download | haskell-4ca3e08460d0b824cc819fdfb910116858dbcb3f.tar.gz |
[project @ 2001-04-24 10:06:18 by simonmar]
Pass $(libdir) to the post install script, not $(prefix)
Diffstat (limited to 'distrib/Makefile-bin.in')
-rw-r--r-- | distrib/Makefile-bin.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/distrib/Makefile-bin.in b/distrib/Makefile-bin.in index a7cbb4ab48..b11b3702c8 100644 --- a/distrib/Makefile-bin.in +++ b/distrib/Makefile-bin.in @@ -209,10 +209,9 @@ denounce: fi postinstall: - if test -x "./post-install-script" ; then \ + @if test -x "./post-install-script" ; then \ echo "Running project-specific post-install script ..." ; \ - ./post-install-script $(platform) $(prefix) \ - $(package)-$(version); \ + ./post-install-script $(platform) $(libdir) ; \ echo "Done" ; \ fi |