diff options
author | Ian Lynagh <ian@well-typed.com> | 2013-03-03 22:49:41 +0000 |
---|---|---|
committer | Ian Lynagh <ian@well-typed.com> | 2013-03-03 22:52:50 +0000 |
commit | 2b85372ca18115bb1d6363256fcea6f54e415bed (patch) | |
tree | 1ccbbac74ddbb89430cc07cbdedd9b48a5a44662 /utils/hpc | |
parent | 8640750e136f98767fc0678b35a20a6fb7970241 (diff) | |
download | haskell-2b85372ca18115bb1d6363256fcea6f54e415bed.tar.gz |
Automatically add the $(exeext) to program names
We now define _PROGNAME, and _PROG is automatically defined with
$(exeext). This will shortly automatically use the right exeext
depending on what stage it is being compiled with (exeext may be
different for different stages when cross-compiling).
Diffstat (limited to 'utils/hpc')
-rw-r--r-- | utils/hpc/ghc.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/hpc/ghc.mk b/utils/hpc/ghc.mk index 917e099ef8..60c13d411e 100644 --- a/utils/hpc/ghc.mk +++ b/utils/hpc/ghc.mk @@ -14,5 +14,5 @@ utils/hpc_USES_CABAL = YES utils/hpc_PACKAGE = hpc-bin utils/hpc_dist-install_INSTALL = YES utils/hpc_dist-install_INSTALL_INPLACE = YES -utils/hpc_dist-install_PROG = hpc$(exeext) +utils/hpc_dist-install_PROGNAME = hpc $(eval $(call build-prog,utils/hpc,dist-install,1)) |