1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Author: Laszlo Kajan <lkajan@rostlab.org>
Description: fixing shell - bash is meant instead of sh
Forwarded: http://lists.alioth.debian.org/pipermail/debian-med-packaging/2012-August/016975.html
--- a/util/compile.sh
+++ b/util/compile.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
# This script builds dependent modules
--- a/etc/createdoc.sh
+++ b/etc/createdoc.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
#
# File: createdoc.sh
#
--- a/etc/platform.sh
+++ b/etc/platform.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/bin/bash
#
# File: platform.sh
# Original: 6-Aug-97 J. Westbrook
|