aboutsummaryrefslogtreecommitdiffstats
path: root/bts/regen_makefile.sh
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 /bts/regen_makefile.sh
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 'bts/regen_makefile.sh')
-rwxr-xr-xbts/regen_makefile.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/bts/regen_makefile.sh b/bts/regen_makefile.sh
index 850e0bf4..147d64fe 100755
--- a/bts/regen_makefile.sh
+++ b/bts/regen_makefile.sh
@@ -1,5 +1,7 @@
#!/bin/sh
+NAME=BTS_Tests
+
FILES="
*.ttcn
*.ttcnpp
@@ -26,4 +28,4 @@ export CPPFLAGS_TTCN3="
-DIPA_EMULATION_RSL
"
-../regen-makefile.sh BTS_Tests.ttcn $FILES
+../regen-makefile.sh -e $NAME $FILES