aboutsummaryrefslogtreecommitdiffstats
path: root/sysinfo
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-10-12 13:05:42 +0200
committerOliver Smith <osmith@sysmocom.de>2021-10-13 11:12:22 +0200
commitf8fe1329e2cb3e39e9d1721ce0a74e3a1843c4e9 (patch)
tree0078d9b53e43d160acdaf109c206e4aedfeb68bf /sysinfo
parentf92ccad16bb0f3d0fe5cdd325d57204ba1dc36d4 (diff)
regen_makefile.sh: set executable name explicitly
Set the executable name in each regen_makefile.sh explicitly with -e, instead of having it set indirectly from the first .ttcn file. Make it consistent by placing the name on top of each of these files. Fix for warning: ttcn3_makefilegen: warning: File `BSC_Tests.ttcn' was given more than once for the Makefile. Related: OS#5252 Change-Id: I5ed03f8f3ed905483620dc7bae33b617bbb8507f
Diffstat (limited to 'sysinfo')
-rwxr-xr-xsysinfo/regen_makefile.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/sysinfo/regen_makefile.sh b/sysinfo/regen_makefile.sh
index 4a3dfcc5..569f4069 100755
--- a/sysinfo/regen_makefile.sh
+++ b/sysinfo/regen_makefile.sh
@@ -1,5 +1,7 @@
#!/bin/sh
+NAME=Test
+
FILES="
*.ttcn
IPL4_GSMTAP_CtrlFunctDef.cc
@@ -13,4 +15,4 @@ FILES="
export CPPFLAGS_TTCN3="
"
-../regen-makefile.sh Test.ttcn $FILES
+../regen-makefile.sh -e $NAME $FILES