diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2012-10-16 13:35:45 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2012-10-16 13:35:45 -0500 |
commit | c646bdd97c63b2d81bc27060203fabfebabda716 (patch) | |
tree | f497d22234f66ffc5516af7831acb440a3142ee5 /community/chntpw | |
parent | ab5a5cb35da6a52f924c7395f82232bf1ddbcba0 (diff) |
Fix build in chntpw
Diffstat (limited to 'community/chntpw')
-rw-r--r-- | community/chntpw/PKGBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/chntpw/PKGBUILD b/community/chntpw/PKGBUILD index cd0a81d1d..6991ac9d9 100644 --- a/community/chntpw/PKGBUILD +++ b/community/chntpw/PKGBUILD @@ -16,7 +16,7 @@ md5sums=('a3fb358d1adec589cd6bc8dedf68896c') build() { cd "${srcdir}/${pkgname}-${pkgver}" - [ "$CARCH" = "x86_64" ] && sed -i "s|CFLAGS= -DUSEOPENSSL -g -I. -I\$(OSSLINC) -Wall -m32|CFLAGS= -DUSEOPENSSL -g -I. -I\$(OSSLINC) -Wall|" Makefile + [ "$CARCH" != "i686" ] && sed -i "s|CFLAGS= -DUSEOPENSSL -g -I. -I\$(OSSLINC) -Wall -m32|CFLAGS= -DUSEOPENSSL -g -I. -I\$(OSSLINC) -Wall|" Makefile make } |