apply-patches.sh: directories are no more considered as overlays

When a directory is found in patchdir, it is skipped.

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>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Ludovic Desroches 2012-03-14 16:33:55 +01:00 committed by Peter Korsgaard
parent 1b671d477b
commit 1b58957a96

View File

@ -30,10 +30,7 @@ for i in `cd ${patchdir}; ls -d ${patchpattern} 2> /dev/null` ; do
apply="patch -g0 -p1 -E -d"
uncomp_parm=""
if [ -d "${patchdir}/$i" ] ; then
type="directory overlay"
uncomp="tar cf - --exclude=.svn --no-anchored -C"
uncomp_parm="."
apply="tar xvf - -C"
echo "${patchdir}/$i skipped"
else case "$i" in
*.gz)
type="gzip"; uncomp="gunzip -dc"; ;;