cookutils rev 68
cook: fix typo in comment and echo
author | Christophe Lincoln <pankso@slitaz.org> |
---|---|
date | Sat May 07 18:12:59 2011 +0200 (2011-05-07) |
parents | 81fad4913719 |
children | 80a7bcd74019 |
files | cook |
line diff
1.1 --- a/cook Sat May 07 18:10:49 2011 +0200 1.2 +++ b/cook Sat May 07 18:12:59 2011 +0200 1.3 @@ -311,7 +311,7 @@ 1.4 } 1.5 1.6 # Find and strip : --strip-all (-s) or --strip-debug on static libs as well 1.7 -# as removing unusuff files lik in Python packages. 1.8 +# as removing uneeded files like in Python packages. 1.9 strip_package() 1.10 { 1.11 gettext "Executing strip on all files..." 1.12 @@ -327,7 +327,7 @@ 1.13 1.14 # Remove .pyc, .pyo, perllocal.pod and .packlist files from packages. 1.15 if echo "$DEPENDS" | fgrep "python"; then 1.16 - gettext "Removing Python compiled files..." 1.17 + gettext "Removing Python compiled files..." 1.18 find $fs -type f -name "*.pyc" -delete 2>/dev/null 1.19 find $fs -type f -name "*.pyo" -delete 2>/dev/null 1.20 find $fs -type f -name "perllocal.pod" -delete 2>/dev/null