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 /dev/libs/libgpg-error | |
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 'dev/libs/libgpg-error')
-rwxr-xr-x | dev/libs/libgpg-error/libgpg-error.SlackBuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/libs/libgpg-error/libgpg-error.SlackBuild b/dev/libs/libgpg-error/libgpg-error.SlackBuild index 7d765e85..339d65c2 100755 --- a/dev/libs/libgpg-error/libgpg-error.SlackBuild +++ b/dev/libs/libgpg-error/libgpg-error.SlackBuild @@ -91,13 +91,13 @@ fi gpg --verify "$SRC_DIR/$SRC.sig" "$SRC_DIR/$SRC" || exit $ERROR_GPG # Untar, configure, 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" CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ - --prefix="$PREFIX" --libdir="$LIBDIR" \ - --infodir="$PREFIX/info" --mandir="$PREFIX/man" || exit $ERROR_CONF + --prefix="$PREFIX" --libdir="$LIBDIR" || exit $ERROR_CONF make || exit $ERROR_MAKE make install DESTDIR="$PKG" || exit $ERROR_INSTALL |