~ubuntu-branches/ubuntu/trusty/ocamlnet/trusty

« back to all changes in this revision

Viewing changes to debian/patches/0007-Added-missing-shebang-lines-in-example-shell-scripts.patch

  • Committer: Bazaar Package Importer
  • Author(s): Stéphane Glondu
  • Date: 2011-09-02 14:12:33 UTC
  • mfrom: (18.2.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110902141233-zbj0ygxb92u6gy4z
Tags: 3.4-1
* New upstream release
  - add a new NetcgiRequire directive to ease dependency management
    (Closes: #637147)
  - remove patches that were applied upstream:
    + Added-missing-shebang-lines-in-example-shell-scripts
    + Try-also-ocamlc-for-POSIX-threads

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
From: Stefano Zacchiroli <zack@debian.org>
2
 
Date: Tue, 6 Oct 2009 15:37:34 +0200
3
 
Subject: [PATCH] Added missing shebang lines in example shell scripts
4
 
 
5
 
Signed-off-by: Stefano Zacchiroli <zack@debian.org>
6
 
---
7
 
 examples/cgi/netcgi2-plex/compile.sh |    1 +
8
 
 examples/cgi/netcgi2-plex/run.sh     |    1 +
9
 
 2 files changed, 2 insertions(+), 0 deletions(-)
10
 
 
11
 
diff --git a/examples/cgi/netcgi2-plex/compile.sh b/examples/cgi/netcgi2-plex/compile.sh
12
 
index d4aeb1e..1ee873a 100755
13
 
--- a/examples/cgi/netcgi2-plex/compile.sh
14
 
+++ b/examples/cgi/netcgi2-plex/compile.sh
15
 
@@ -1,2 +1,3 @@
16
 
+#!/bin/sh
17
 
 export OCAMLPATH=../../../src
18
 
 make
19
 
diff --git a/examples/cgi/netcgi2-plex/run.sh b/examples/cgi/netcgi2-plex/run.sh
20
 
index 5f66420..b786ede 100755
21
 
--- a/examples/cgi/netcgi2-plex/run.sh
22
 
+++ b/examples/cgi/netcgi2-plex/run.sh
23
 
@@ -1,2 +1,3 @@
24
 
+#!/bin/sh
25
 
 export LD_LIBRARY_PATH=../../../src/netsys:../../../src/netstring
26
 
 exec ./netplex -conf netplex.cfg "$@"