From: Ludovic Desroches Date: Wed, 14 Mar 2012 15:33:54 +0000 (+0100) Subject: apply-patches.sh: cleanup X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1b671d477bc3154c1c72e2a770b8a97e4566a359;p=buildroot.git apply-patches.sh: cleanup Add quoting and remove redundant command. Signed-off-by: Ludovic Desroches Tested-by: Ludovic Desroches with an armadeus_apf9328_defconfig build Acked-by: Thomas Petazzoni Tested-by: Thomas Petazzoni Acked-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Peter Korsgaard --- diff --git a/support/scripts/apply-patches.sh b/support/scripts/apply-patches.sh index 908ce22ecf..c741a6320c 100755 --- a/support/scripts/apply-patches.sh +++ b/support/scripts/apply-patches.sh @@ -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