Add the .config file to the export package

This commit is contained in:
Gregory Nutt 2014-09-05 07:37:44 -06:00
parent ae4cb48a06
commit bb180cbb2e

View File

@ -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; }