From: Stefano Zacchiroli <zack@debian.org>
Date: Tue, 6 Oct 2009 15:37:34 +0200
Subject: [PATCH] Added missing shebang lines in example shell scripts
Signed-off-by: Stefano Zacchiroli <zack@debian.org>
---
examples/cgi/netcgi2-plex/compile.sh | 1 +
examples/cgi/netcgi2-plex/run.sh | 1 +
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/examples/cgi/netcgi2-plex/compile.sh b/examples/cgi/netcgi2-plex/compile.sh
index d4aeb1e..1ee873a 100755
--- a/examples/cgi/netcgi2-plex/compile.sh
+++ b/examples/cgi/netcgi2-plex/compile.sh
@@ -1,2 +1,3 @@
+#!/bin/sh
export OCAMLPATH=../../../src
make
diff --git a/examples/cgi/netcgi2-plex/run.sh b/examples/cgi/netcgi2-plex/run.sh
index 5f66420..b786ede 100755
--- a/examples/cgi/netcgi2-plex/run.sh
+++ b/examples/cgi/netcgi2-plex/run.sh
@@ -1,2 +1,3 @@
+#!/bin/sh
export LD_LIBRARY_PATH=../../../src/netsys:../../../src/netstring
exec ./netplex -conf netplex.cfg "$@"
--