mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
system/chkrootkit: Fixed SlackBuild to work with 13.37.
ls output changed in 13.37 and broke the script. Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
This commit is contained in:
parent
a838fe4198
commit
d4eb6c6d30
1 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@
|
|||
|
||||
PRGNAM=chkrootkit
|
||||
VERSION=${VERSION:-0.49}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
|
@ -71,7 +71,7 @@ SCFLAGS="$SLKCFLAGS" make
|
|||
# Lets make our own fancy make install
|
||||
DESTDIR=$PKG/usr/lib${LIBDIRSUFFIX}/chkrootkit/bin
|
||||
mkdir -p $DESTDIR
|
||||
for BINPRG in $(ls -l | grep "rwx\|\-x" | grep -v "\." | awk '{ print $8 }'); do
|
||||
for BINPRG in $(ls -l | grep "rwx\|\-x" | grep -v "\." | awk '{ print $9 }'); do
|
||||
install -m 0755 $BINPRG $DESTDIR
|
||||
done
|
||||
|
||||
|
|
Loading…
Reference in a new issue