diff options
Diffstat (limited to 'scripts/pythondeps')
-rw-r--r-- | scripts/pythondeps | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pythondeps b/scripts/pythondeps index 6c391d7c6..ad9a999a4 100644 --- a/scripts/pythondeps +++ b/scripts/pythondeps @@ -18,7 +18,7 @@ if [ $ARCH = "sparc" -o $ARCH = "sparc64" ]; then <$DIR/dev/openprom fi (/usr/sbin/chroot $DIR /usr/bin/anaconda -m dir://mnt/source --test --text --traceonly; \ -cd $DIR; find usr/lib/python* usr/lib/anaconda -type f | sed 's,^,/,' ) | \ +cd $DIR; find usr/lib/python* usr/lib/anaconda usr/lib/booty -type f | sed 's,^,/,' ) | \ sort | uniq -u | sed s,^,./, | while read fn; do [ ! -d "$DIR/$fn" ] && rm "$DIR/$fn" done |