summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio 'Flameeyes' Pettenò <flameeyes@gmail.com>2010-08-19 06:12:06 +0200
committerDiego Elio 'Flameeyes' Pettenò <flameeyes@gmail.com>2010-08-19 06:12:06 +0200
commita1ba6d9f768f7c9092d4fc150c8b2a2d81f0cbdd (patch)
tree549f52251a2cc9cd5789d395da9a617c0a905f0c
parentKeep the .config inline; 'make oldconfig' breaks the link. (diff)
downloadflameeyes-tinderbox-a1ba6d9f768f7c9092d4fc150c8b2a2d81f0cbdd.tar.gz
flameeyes-tinderbox-a1ba6d9f768f7c9092d4fc150c8b2a2d81f0cbdd.tar.bz2
flameeyes-tinderbox-a1ba6d9f768f7c9092d4fc150c8b2a2d81f0cbdd.zip
Warn when /var/lock, /var/run, /dev are in the installed image.
-rwxr-xr-xbashrc5
1 files changed, 4 insertions, 1 deletions
diff --git a/bashrc b/bashrc
index 4a1d802..1d0eabe 100755
--- a/bashrc
+++ b/bashrc
@@ -83,7 +83,10 @@ post_src_install() {
\( \( -path "${D}"usr/man/\* -or -path "${D}"usr/info/\* -or \
-path "${D}"usr/X11R6/\* -or \
-path "${D}"usr/locale/\* -or \
- -path "${D}"usr/local/\* \
+ -path "${D}"usr/local/\* -or \
+ -path "${D}"var/lock\* -or \
+ -path "${D}"var/run/\* -or \
+ -path "${D}"dev/\* \
\) -fprintf "${T}"/tinderbox-invalid-directory.log "/%P\n" \) , \
\( -path "${D}"usr/lib/perl5/site_perl/\* \
-fprintf "${T}"/tinderbox-site-perl.log "/%P\n" \) , \