aboutsummaryrefslogtreecommitdiff
path: root/sys/apps/microcode_ctl
diff options
context:
space:
mode:
authorluis <luis@370017ae-e619-0410-ac65-c121f96126d4>2006-12-22 01:40:43 +0000
committerluis <luis@370017ae-e619-0410-ac65-c121f96126d4>2006-12-22 01:40:43 +0000
commit063e9b6e54d7ba8a7c105fc65df66438f0b163d2 (patch)
treefa510e23d90e561e5c459baaedc1a18d02b6cc4d /sys/apps/microcode_ctl
parent8c7ca4ef0a1074114f5ed67ff2d9790c7d1dc517 (diff)
downloadslackbuilds-063e9b6e54d7ba8a7c105fc65df66438f0b163d2.tar.gz
slackbuilds-063e9b6e54d7ba8a7c105fc65df66438f0b163d2.tar.bz2
Adicionando "-C $SRC_DIR" ao tar, em todos SlackBuilds que eu ja fiz
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@946 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'sys/apps/microcode_ctl')
-rwxr-xr-xsys/apps/microcode_ctl/microcode_ctl.SlackBuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/apps/microcode_ctl/microcode_ctl.SlackBuild b/sys/apps/microcode_ctl/microcode_ctl.SlackBuild
index a33c89e2..367d6b73 100755
--- a/sys/apps/microcode_ctl/microcode_ctl.SlackBuild
+++ b/sys/apps/microcode_ctl/microcode_ctl.SlackBuild
@@ -68,8 +68,8 @@ if [ ! -f "$SRC_DIR/$SRC" ]; then
fi
# Untar, compile and install
-tar --no-same-owner --no-same-permissions -xvf $SRC_DIR/$SRC || exit $ERROR_TAR
-cd $PKG_SRC
+tar --no-same-owner --no-same-permissions -xvf $SRC_DIR/$SRC -C $SRC_DIR || exit $ERROR_TAR
+cd $SRC_DIR/$PKG_SRC
make all || exit $ERROR_MAKE
if [ ! -c /dev/cpu/microcode ]; then
make device || exit $ERROR_MAKE
@@ -171,5 +171,5 @@ makepkg -l y -c n $REPOS/$PKG_NAME-$VERSION-$ARCH-$BUILD.tgz || exit $ERROR_MKPK
# Delete source and build directories, if requested
if [ "$CLEANUP" == "yes" ]; then
- rm -rf $CWD/$PKG_SRC $PKG
+ rm -rf $SRC_DIR/$PKG_SRC $PKG
fi