summaryrefslogtreecommitdiff
path: root/support/scripts/apply-patches.sh
diff options
context:
space:
mode:
Diffstat (limited to 'support/scripts/apply-patches.sh')
-rwxr-xr-xsupport/scripts/apply-patches.sh5
1 files changed, 1 insertions, 4 deletions
diff --git a/support/scripts/apply-patches.sh b/support/scripts/apply-patches.sh
index c741a6320..3d655f144 100755
--- a/support/scripts/apply-patches.sh
+++ b/support/scripts/apply-patches.sh
@@ -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"; ;;