Browse Source

* enhanced Idunn to take patches from patches/ and to also exclude usr/share/info/* files

legacy/try1
amery 20 years ago
parent
commit
8806db7fe1
1 changed files with 9 additions and 2 deletions
  1. +9
    -2
      parse-config

+ 9
- 2
parse-config

@ -1,7 +1,14 @@
case "$pkg" in
busybox) echo_status "Tweaking busybox for Idunn!"
busybox) echo_status "Tweaking $pkg for Idunn!"
var_append extraconffiles ' ' $base/target/idunn/busybox.config
;;
esac
var_append flistdel '|' 'usr/share/man/.*|usr/share/doc/.*'
if [ -f $base/target/idunn/patches/$pkg.patch ]; then
echo_status "Patching $pkg for Idunn!"
var_append patchfiles ' ' "$base/target/idunn/patches/$pkg.patch"
fi
var_append flistdel '|' 'usr/share/man/.*'
var_append flistdel '|' 'usr/share/doc/.*'
var_append flistdel '|' 'usr/share/info/.*'

Loading…
Cancel
Save