blob: 96df7acd6497fa3df9af49b161e41d17a72d4058 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- src/launch/camllight.tpl-- Fri Jun 23 22:28:07 1995
+++ src/launch/camllight.tpl Sun Aug 6 12:00:50 2006
@@ -1,6 +1,7 @@
#!/bin/sh
stdlib=LIBDIR
+camlrun=BINDIR/camlrun
includes=""
options=""
@@ -12,7 +13,7 @@
while : ; do
case $1 in
"")
- exec camlrun $stdlib/camltop -stdlib $stdlib $includes $options;;
+ exec $camlrun $stdlib/camltop -stdlib $stdlib $includes $options;;
-I|-include)
includes="$includes -I $2"
shift;;
|