tools/testbuild.sh: kconfig-conf was silently failing because (1) it needs to execute from the top-level NuttX directory and (2) apps/Kconfig does not yet exist

This commit is contained in:
Gregory Nutt 2016-03-08 14:12:44 -06:00
parent c13cb0f839
commit 88d8a81b23
3 changed files with 4 additions and 2 deletions

2
arch

@ -1 +1 @@
Subproject commit 184bd455fffac7989e63c5270154380ac91a37d0
Subproject commit 92eab5a12badf6230d18b56c6027da6de442dc9a

@ -1 +1 @@
Subproject commit 131b6f6c9f5fc3c19b178fa21df9ad074884ed27
Subproject commit 88faa8e05cc65a32d47e0b97c1954ef1e6e073df

View File

@ -192,6 +192,8 @@ function configure {
fi
echo " Refreshing..."
cd $nuttx || { echo "ERROR: failed to CD to $nuttx"; exit 1; }
make context 1>/dev/null 2>&1
kconfig-conf --olddefconfig Kconfig 1>/dev/null
}