office/gnokii: Fixed for bash4.
This commit is contained in:
parent
e1e6b68f0b
commit
9066463330
|
@ -96,12 +96,8 @@ make install DESTDIR=$PKG \
|
|||
ringtonedocsdir=/usr/doc/$PRGNAM-$VERSION/sample/ringtone \
|
||||
vcaldocsdir=/usr/doc/$PRGNAM-$VERSION/sample/vCalendar \
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null || true
|
||||
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
|
|
Loading…
Reference in New Issue