diff options
author | Marcel Saegebarth <marc@mos6581.de> | 2015-01-30 14:50:59 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2015-01-31 06:56:28 +0700 |
commit | d0b20012ec09baba25eb6c185aba725ca435984a (patch) | |
tree | 3d89c5f183d8b7a00395ee366c05a2f51d9e1bcd | |
parent | 9c25152b0f1dafe87fe3d32d1906a90f3184aae6 (diff) | |
download | slackbuilds-d0b20012ec09baba25eb6c185aba725ca435984a.tar.gz |
network/proxychains: copyright year + cleanup
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r-- | network/proxychains/proxychains.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/network/proxychains/proxychains.SlackBuild b/network/proxychains/proxychains.SlackBuild index c2a6a8fb8b..0c2175d46e 100644 --- a/network/proxychains/proxychains.SlackBuild +++ b/network/proxychains/proxychains.SlackBuild @@ -1,9 +1,9 @@ #!/bin/sh -# SlackBuild script for "proxychains". +# Slackware build script for "proxychains". # Copyright -2014 GPLeo <slackbuilds@gmail.com> -# Copyright 2014 Marcel Saegebarth <marc@mos6581.de> +# Copyright 2014-2015 Marcel Saegebarth <marc@mos6581.de> # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -83,7 +83,7 @@ CXXFLAGS="$SLKCFLAGS" \ make make install install-config DESTDIR=$PKG -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true ( cd $PKG/etc/ ; mv $PRGNAM.conf $PRGNAM.conf.new ) |