diff options
Diffstat (limited to 'source/a/xz/xz.SlackBuild')
-rwxr-xr-x | source/a/xz/xz.SlackBuild | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/source/a/xz/xz.SlackBuild b/source/a/xz/xz.SlackBuild index dd996f48..7c60ce6c 100755 --- a/source/a/xz/xz.SlackBuild +++ b/source/a/xz/xz.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2009, 2010, 2011 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2009, 2010, 2011, 2012 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # Permission to use, copy, modify, and distribute this software for @@ -154,3 +154,10 @@ cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG /sbin/makepkg -l y -c n $TMP/${PKGNAM}-${VERSION}-${ARCH}-${BUILD}.tgz +# Move temporary stuff to /tmp, so that it won't get forgotten +# in the shuffle: + +cp -a $TMP/${PKGNAM}-${VERSION}-${ARCH}-${BUILD}.tgz /tmp +rm -rf /tmp/xz-tmp* +mv /xz-tmp* /tmp + |