summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-05 07:37:44 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-05 07:37:44 -0600
commit23086a0707f03cc68b6af6904b69b3343ab0f8a0 (patch)
tree09f07bebb1736be9fc3d70ed124941aa13f96012 /apps
parent5a787f8714faf1d16d825ce60d301ca5be2bb3ee (diff)
downloadpx4-nuttx-23086a0707f03cc68b6af6904b69b3343ab0f8a0.tar.gz
px4-nuttx-23086a0707f03cc68b6af6904b69b3343ab0f8a0.tar.bz2
px4-nuttx-23086a0707f03cc68b6af6904b69b3343ab0f8a0.zip
Add the .config file to the export package
Diffstat (limited to 'apps')
-rwxr-xr-xapps/tools/mkimport.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/tools/mkimport.sh b/apps/tools/mkimport.sh
index 1d477b71a..38e48f010 100755
--- a/apps/tools/mkimport.sh
+++ b/apps/tools/mkimport.sh
@@ -165,6 +165,16 @@ fi
mv ${SALLDIRS} ${IMPORTDIR}/. || \
{ echo "ERROR: Failed to move ${SALLDIRS} to ${IMPORTDIR}"; exit 1; }
+# Move the .config file in place in the import directory
+
+SFILES=".config"
+for file in ${SFILES}; do
+ if [ -f "${EXPORTDIR}/${file}" ]; then
+ cp -a ${EXPORTDIR}/${file} ${IMPORTDIR}/${file} || \
+ { echo "ERROR: Failed to copy ${EXPORTDIR}/${file} to ${IMPORTDIR}/${file}"; exit 1; }
+ fi
+done
+
# Finally, remove the temporary directory
cd ${WD} || { echo "ERROR: Failed to cd to ${WD}"; exit 1; }