aboutsummaryrefslogtreecommitdiffstats
path: root/lang/modula-3-lib/files/50.m3.sh
diff options
context:
space:
mode:
Diffstat (limited to 'lang/modula-3-lib/files/50.m3.sh')
-rw-r--r--lang/modula-3-lib/files/50.m3.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/lang/modula-3-lib/files/50.m3.sh b/lang/modula-3-lib/files/50.m3.sh
new file mode 100644
index 000000000000..fb69bd7e97e4
--- /dev/null
+++ b/lang/modula-3-lib/files/50.m3.sh
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then
+ echo "$0: Cannot determine the PREFIX" >&2
+ exit 1
+fi
+
+case "$1" in
+start)
+ echo -n ' Modula-3'
+ ldconfig -m ${PREFIX}/lib/m3/FreeBSD2
+ ;;
+stop)
+ ;;
+*)
+ echo "Usage: `basename $0` {start|stop}" >&2
+ ;;
+esac
+
+exit 0