Skip to content

Commit

Permalink
Remove the given src folder in install.py at ttcn3_makefilegen
Browse files Browse the repository at this point in the history
Although this parameter is legit for ttcn3_makefilegen it is redundant as the information is retrieved from .tdp file.
  • Loading branch information
Alexander Kaiser committed Nov 29, 2019
1 parent d28147d commit 4274b2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def build(protocol):
# -m: always use makedepend for dependencies
# -e ets_name: name of the target executable
# -t tpd: read project descriptor file
os.system("ttcn3_makefilegen -f -g -m -t "+tpd_file+" -e "+NAME_EXE+" "+PATH_TW+"src/*.ttcn")
os.system("ttcn3_makefilegen -f -g -m -t "+tpd_file+" -e "+NAME_EXE)
print("Makefile generated!")

# move to bin folder
Expand Down

0 comments on commit 4274b2c

Please sign in to comment.