aboutsummaryrefslogtreecommitdiff
path: root/scripts/confmk.py
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-05-06 17:10:16 +0200
committerKarel Kočí <cynerd@email.cz>2015-05-06 17:10:16 +0200
commitb9ff681e3ed5efc0f8f76ce75d89b2214a6e68c9 (patch)
tree124f397a5b42bca85cad84cb48a4e2b1a883818f /scripts/confmk.py
parent86777e27fcb6870694cd166866a37360b7591f5f (diff)
downloadlinux-conf-perf-b9ff681e3ed5efc0f8f76ce75d89b2214a6e68c9.tar.gz
linux-conf-perf-b9ff681e3ed5efc0f8f76ce75d89b2214a6e68c9.tar.bz2
linux-conf-perf-b9ff681e3ed5efc0f8f76ce75d89b2214a6e68c9.zip
Separate initialisation
Initialisation now can be executed without loop it self.
Diffstat (limited to 'scripts/confmk.py')
-rwxr-xr-xscripts/confmk.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/confmk.py b/scripts/confmk.py
index de9052e..952e674 100755
--- a/scripts/confmk.py
+++ b/scripts/confmk.py
@@ -1,4 +1,4 @@
-#!/bin/python3
+#!/bin/env python3
import os
import sys
from conf import conf
@@ -18,7 +18,7 @@ def gen_confmk():
f.write("BUILDROOT_INITSCRIPT := " + conf.buildroot_initscript + "\n")
f.write("BUILDROOT_DEF_CONFIG := " + conf.buildroot_def_config + "\n")
f.write("\n")
- f.write("NBSCRIPTS := " + conf.nbscript + "\n")
+ f.write("NBSCRIPT := " + conf.nbscript + "\n")
#################################################################################