diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-06-08 20:59:23 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-06-09 02:22:03 -0500 |
commit | eb6178414c6f24578304753f616bf2a389d8e8e5 (patch) | |
tree | 3a33b2de57febe18526ae6b532fa0dba7ba2c568 /libraries/librsync | |
parent | b97eface7e248f5c604f3c1e5cc5cb41b1d79695 (diff) | |
download | slackbuilds-eb6178414c6f24578304753f616bf2a389d8e8e5.tar.gz |
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>
Diffstat (limited to 'libraries/librsync')
-rw-r--r-- | libraries/librsync/librsync.SlackBuild | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libraries/librsync/librsync.SlackBuild b/libraries/librsync/librsync.SlackBuild index 61b7753bf9..e7da10e0ac 100644 --- a/libraries/librsync/librsync.SlackBuild +++ b/libraries/librsync/librsync.SlackBuild @@ -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 |