libraries/librsync: Script cleanup
remove "umask 0022", which is the default on Slackware anyway move "set -e" further down in the script Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
This commit is contained in:
parent
b97eface7e
commit
eb6178414c
|
@ -7,13 +7,6 @@
|
|||
|
||||
# Modified by the SlackBuilds.org project
|
||||
|
||||
set -eu
|
||||
|
||||
# Set umask to what source package expects. Permissions in the final
|
||||
# package won't be correct otherwise (unless by coincedence your umask
|
||||
# is already 0022.)
|
||||
umask 0022
|
||||
|
||||
PRGNAM=librsync
|
||||
VERSION=0.9.7
|
||||
BUILD=${BUILD:-1}
|
||||
|
@ -48,6 +41,8 @@ else
|
|||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
|
|
Loading…
Reference in New Issue