summaryrefslogtreecommitdiffstats
path: root/scripts/lib/ptxd_lib_dgen.awk
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2010-04-19 12:29:19 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2010-04-19 15:09:42 +0200
commit84cad42c448db8f672ad51824bc8bc2f6dea9595 (patch)
treed912acca958af2157c3b11b5447ef723443fe663 /scripts/lib/ptxd_lib_dgen.awk
parent103ee9a0c4496c21ec438ed062b3fb229b6e2189 (diff)
downloadptxdist-84cad42c448db8f672ad51824bc8bc2f6dea9595.tar.gz
ptxdist-84cad42c448db8f672ad51824bc8bc2f6dea9595.tar.xz
[ptxd_lib_dgen] fix md5sum creation
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'scripts/lib/ptxd_lib_dgen.awk')
-rw-r--r--scripts/lib/ptxd_lib_dgen.awk4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/lib/ptxd_lib_dgen.awk b/scripts/lib/ptxd_lib_dgen.awk
index d13567ba6..2c4c4f641 100644
--- a/scripts/lib/ptxd_lib_dgen.awk
+++ b/scripts/lib/ptxd_lib_dgen.awk
@@ -177,10 +177,10 @@ $1 ~ /^PTX_MAP_DEP/ {
# parse the ptx- and platformconfig
# record yes and module packages
#
-$1 ~ /^PTXCONF_/ && $2 ~ /^[ym]$/ {
+$1 ~ /^PTXCONF_/ {
this_PKG = gensub(/^PTXCONF_/, "", "g", $1);
- if (this_PKG in PKG_to_pkg)
+ if ($2 ~ /^[ym]$/ && this_PKG in PKG_to_pkg)
active_PKG_to_pkg[this_PKG] = PKG_to_pkg[this_PKG];
do {