diff options
author | Diego Elio 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2010-08-19 06:12:06 +0200 |
---|---|---|
committer | Diego Elio 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2010-08-19 06:12:06 +0200 |
commit | a1ba6d9f768f7c9092d4fc150c8b2a2d81f0cbdd (patch) | |
tree | 549f52251a2cc9cd5789d395da9a617c0a905f0c | |
parent | Keep the .config inline; 'make oldconfig' breaks the link. (diff) | |
download | flameeyes-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-x | bashrc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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" \) , \ |