[GHC] #9054: runghc-<version> does not call ghc of the same version
GHC
ghc-devs at haskell.org
Tue Apr 29 16:07:12 UTC 2014
#9054: runghc-<version> does not call ghc of the same version
------------------------------------+-------------------------------------
Reporter: EyalLotem | Owner:
Type: bug | Status: new
Priority: normal | Milestone:
Component: Compiler | Version: 7.8.2
Keywords: | Operating System: Unknown/Multiple
Architecture: Unknown/Multiple | Type of failure: None/Unknown
Difficulty: Unknown | Test Case:
Blocked By: | Blocking:
Related Tickets: |
------------------------------------+-------------------------------------
When I ran runghc-7.6.3, it actually executed "/usr/local/bin/ghc" which
points to ghc-7.8.2.
The offending line is inside the runghc-<version> script:
{{{
exec "$executablename" -f "$bindir/ghc" ${1+"$@"}
}}}
Which should be:
{{{
exec "$executablename" -f "$bindir/ghc-<version>" ${1+"$@"}
}}}
--
Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/9054>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler
More information about the ghc-tickets
mailing list