fix logic error in generic Install.py script when a Makefile.lammps is missing

This commit is contained in:
Axel Kohlmeyer
2020-02-19 18:10:32 +01:00
parent 7434267f57
commit 8a52e5dbe7

View File

@ -45,8 +45,11 @@ if not args.machine and not args.extramake:
sys.exit(HELP)
machine = args.machine
extraflag = not args.extramake
suffix = args.extramake
extraflag = args.extramake
if extraflag:
suffix = args.extramake
else:
suffix = 'empty'
# set lib from working dir