Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/mkarchiso
diff options
context:
space:
mode:
Diffstat (limited to 'mkarchiso')
-rwxr-xr-xmkarchiso6
1 files changed, 1 insertions, 5 deletions
diff --git a/mkarchiso b/mkarchiso
index 3703b0b..097de00 100755
--- a/mkarchiso
+++ b/mkarchiso
@@ -155,17 +155,13 @@ if [ "${command_name}" = "install" -o "${command_name}" = "all" ]; then
find "${instroot}" -name *.pacnew -name *.pacsave -name *.pacorig -delete
# delete a lot of unnecessary cache/log files
- kill_dirs="var/abs var/cache/man var/cache/pacman var/log/* var/mail tmp/* usr/include initrd"
+ kill_dirs="var/abs var/cache/man var/cache/pacman var/log/* var/mail tmp/* initrd"
for x in ${kill_dirs}; do
if [ -e "${instroot}/${x}" ]; then
rm -rf "${instroot}/${x}"
fi
done
- # delete static libraries
- find "${instroot}/lib" -name *.a -delete
- find "${instroot}/usr/lib" -name *.a -delete
-
# pacman DBs are big, delete all sync dbs
for d in ${instroot}/var/lib/pacman/*; do
[ "$(basename ${d})" != "local" ] && rm -rf "${d}"