diff options
author | luis <luis@370017ae-e619-0410-ac65-c121f96126d4> | 2007-01-29 08:21:30 +0000 |
---|---|---|
committer | luis <luis@370017ae-e619-0410-ac65-c121f96126d4> | 2007-01-29 08:21:30 +0000 |
commit | 8cd3c1c224db3ed9381179b74d280bd54597ae10 (patch) | |
tree | 39becf4d5f86780ffcde34791af92e46b9fece6b /sys/apps | |
parent | e1e6b23e6671cdf446862bad3c710443634ce4b0 (diff) | |
download | slackbuilds-8cd3c1c224db3ed9381179b74d280bd54597ae10.tar.gz slackbuilds-8cd3c1c224db3ed9381179b74d280bd54597ae10.tar.bz2 |
Consertando alguns bugs
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@995 370017ae-e619-0410-ac65-c121f96126d4
Diffstat (limited to 'sys/apps')
-rwxr-xr-x | sys/apps/microcode_ctl/microcode_ctl.SlackBuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/apps/microcode_ctl/microcode_ctl.SlackBuild b/sys/apps/microcode_ctl/microcode_ctl.SlackBuild index 09493c1e..838c81e5 100755 --- a/sys/apps/microcode_ctl/microcode_ctl.SlackBuild +++ b/sys/apps/microcode_ctl/microcode_ctl.SlackBuild @@ -19,7 +19,7 @@ fi SRC_NAME="microcode_ctl" PKG_NAME="microcode_ctl" ARCH=${ARCH:=i486} -VERSION=${VERSION:=1.14} +VERSION=${VERSION:=1.16} BUILD=${BUILD:=1ls} SRC_DIR=${SRC_DIR:=$CWD} TMP=${TMP:=/tmp} @@ -68,7 +68,8 @@ if [ ! -f "$SRC_DIR/$SRC" ]; then fi # Untar, compile and install -tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" -C "$SRC_DIR" || exit $ERROR_TAR +cd "$SRC_DIR" +tar --no-same-owner --no-same-permissions -xvf "$SRC_DIR/$SRC" || exit $ERROR_TAR cd "$PKG_SRC" make all || exit $ERROR_MAKE if [ ! -c /dev/cpu/microcode ]; then |