Package: geos Version: 3.2.2-3 Severity: important Tags: patch Hi,
geos fails on armhf, the build log is here: http://buildd.debian-ports.org/status/fetch.php?pkg=geos&arch=armhf&ver=3.2.2-3&stamp=1312272109 since armhf is similar to armel but with a different triplet (arm-linux-gnueabihf), the simple attached patch fixes the problem. Regards Konstantinos
diff -ruN geos-3.2.2/debian/rules geos-3.2.2.armhf//debian/rules --- geos-3.2.2/debian/rules 2011-07-18 14:55:44.000000000 +0300 +++ geos-3.2.2.armhf//debian/rules 2011-09-13 00:31:23.648161122 +0300 @@ -36,7 +36,8 @@ ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) INSTALL_PROGRAM += -s endif -ifeq ($(DEB_HOST_GNU_TYPE),arm-linux-gnueabi) +# catch both armel and armhf +ifneq (,$(findstring arm-linux-gnueabi,$(DEB_HOST_GNU_TYPE))) CONFFLAGS += --disable-inline endif