Skip to content
Snippets Groups Projects
Commit 223d2a6b authored by sof's avatar sof
Browse files

[project @ 1997-03-20 22:40:41 by sof]

Use eval exec ... trick instead of #! (cygwin32 cannot grok)
parent bac6277e
No related merge requests found
......@@ -113,7 +113,7 @@ GHC_OPT_HILEV_ASM GhcWithNativeCodeGen
GHC_UNLIT GHC_HSCPP GHC_HSC GHC_SYSMAN
CP RM PERL CONTEXT_DIFF
CP RM CONTEXT_DIFF
WAY_*_NAME WAY_*_HC_OPTS
......@@ -1444,7 +1444,8 @@ if ($Do_lnkr) {
# OK, now create the magic script for "$executable"
open(EXEC, "> $executable") || &tidy_up_and_die(1,"$Pgm: couldn't open $executable to write!\n");
print EXEC <<EOSCRIPT1;
#!${PERL}
eval 'exec perl -S \$0 \${1+"\$@"}'
if \$running_under_some_shell;
# =!=!=!=!=!=!=!=!=!=!=!
# This script is automatically generated: DO NOT EDIT!!!
# Generated by Glasgow Haskell, version ${PROJECTVERSION} ${PROJECTPATCHLEVEL}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment