apply-patches.sh: cleanup

Add quoting and remove redundant command.

Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>
Tested-by: Ludovic Desroches <ludovic.desroches@atmel.com>
with an armadeus_apf9328_defconfig build
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Ludovic Desroches 2012-03-14 16:33:54 +01:00 committed by Peter Korsgaard
parent a7773ea412
commit 1b671d477b

View File

@ -54,8 +54,8 @@ for i in `cd ${patchdir}; ls -d ${patchpattern} 2> /dev/null` ; do
esac fi
echo ""
echo "Applying ${i} using ${type}: "
echo ${i} | cat >> ${builddir}/.applied_patches_list
${uncomp} ${patchdir}/${i} ${uncomp_parm} | ${apply} ${builddir}
echo ${i} >> ${builddir}/.applied_patches_list
${uncomp} "${patchdir}/${i}" ${uncomp_parm} | ${apply} "${builddir}"
if [ $? != 0 ] ; then
echo "Patch failed! Please fix $i!"
exit 1