fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38244?usp=email )
Change subject: {bsc-nat,selftest,sysinfo}/gen_links.sh: use bash, not sh ......................................................................
{bsc-nat,selftest,sysinfo}/gen_links.sh: use bash, not sh
This fixes the following error:
./gen_links.sh: 40: shopt: not found
which is printed when compiling the above-mentioned testsuites.
Change-Id: I994e241efb73f6f8b78803cf4ecdfb057b210a3b --- M bsc-nat/gen_links.sh M selftest/gen_links.sh M sysinfo/gen_links.sh 3 files changed, 3 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/44/38244/1
diff --git a/bsc-nat/gen_links.sh b/bsc-nat/gen_links.sh index 395f50e..550aa45 100755 --- a/bsc-nat/gen_links.sh +++ b/bsc-nat/gen_links.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash
BASEDIR=../deps
diff --git a/selftest/gen_links.sh b/selftest/gen_links.sh index 1a3bbe1..d5ffe6d 100755 --- a/selftest/gen_links.sh +++ b/selftest/gen_links.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash
BASEDIR=../deps
diff --git a/sysinfo/gen_links.sh b/sysinfo/gen_links.sh index c8a3ee3..538fff2 100755 --- a/sysinfo/gen_links.sh +++ b/sysinfo/gen_links.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash
BASEDIR=../deps