Removed /mnt, /media and /cdrom from the default EXCLUDE

git-svn-id: https://svn.code.sf.net/p/porg/code/trunk@156 8854956c-c02d-4db9-8198-7e99b8e08f37
This commit is contained in:
davidrr 2015-05-27 05:18:24 +00:00
parent 34a8101549
commit 8e3255eeda
3 changed files with 4 additions and 1 deletions

View File

@ -52,4 +52,5 @@ Veeti Paananen
Piotr Karbowski
Kardakov Slava
R.J.V. Bertin
Tomoaki Nishiyama

View File

@ -5,6 +5,8 @@ SVN
+ Removed 'make logme' (no longer required to log the own porg
installation). Experimental. Please report any error.
+ Removed /mnt, /media and /cdrom from the default EXCLUDE (thanks
Tomoaki Nishiyama).
Version 0.8 (13 April 2015)

View File

@ -51,7 +51,7 @@ AC_DEFINE_UNQUOTED([RELEASEDATE], ["$RELEASEDATE"], [Release date])
AC_SUBST([RELEASEDATE])
EXCLUDE="/tmp"
for dir in /dev /proc /selinux /sys /run /mnt /media /cdrom; do
for dir in /dev /proc /selinux /sys /run; do
test -e "$dir" && EXCLUDE="$EXCLUDE:$dir"
done
AC_DEFINE_UNQUOTED([EXCLUDE], ["$EXCLUDE"], [List of paths to skip])