From 519be9e690dad87264a7cb37d88fceee508e81b8 Mon Sep 17 00:00:00 2001 From: Kenneth Johansson Date: Fri, 7 Jul 2017 15:00:52 +0200 Subject: [PATCH] genconfig: ignore missing files. Do not print out error if the files do not exist. --- iop/scripts/genconfig.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iop/scripts/genconfig.sh b/iop/scripts/genconfig.sh index 25d498dd0..bb9d17f64 100755 --- a/iop/scripts/genconfig.sh +++ b/iop/scripts/genconfig.sh @@ -296,7 +296,7 @@ function genconfig { # we need to signal to bradcom SDK that we have changed the board id # currently boardparms.c and boardparms_voice.c is the only place that is depending on inteno boardid name # so just touch that file. - find build_dir/ -name "boardparms*c" -print0 | xargs -0 touch + find build_dir/ -name "boardparms*c" -print0 2>/dev/null | xargs -0 touch 2>/dev/null # Set default values based on selected parameters v "$(make defconfig 2>&1)"