diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2012-12-20 03:28:59 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2012-12-20 03:28:59 -0500 |
commit | 27127b7917b98352703db59967e23688e07a5d24 (patch) | |
tree | 3ce143a0d80332a4dd0791b62de96cf5e1ba50e5 /community/hashcash/PKGBUILD | |
parent | 0481e0aa663ba60cc332ae4b840c9762cd14c419 (diff) |
Fix builds of glee and hashcash
Diffstat (limited to 'community/hashcash/PKGBUILD')
-rw-r--r-- | community/hashcash/PKGBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/community/hashcash/PKGBUILD b/community/hashcash/PKGBUILD index a77ea64ff..431c03627 100644 --- a/community/hashcash/PKGBUILD +++ b/community/hashcash/PKGBUILD @@ -15,10 +15,10 @@ md5sums=('31fae207061841dffc7b90ee18e3d0fa') build() { cd ${srcdir}/${pkgname}-${pkgver} - if [ "${CARCH}" = "x86_64" ]; then - make generic-openssl - else + if [ "${CARCH}" = "i686" ]; then make x86-openssl + else + make generic-openssl fi install -Dm755 hashcash ${pkgdir}/usr/bin/hashcash install -Dm755 sha1 ${pkgdir}/usr/bin/sha1 |