Comment 5 for bug 725763

Revision history for this message
Steve Langasek (vorlon) wrote :

The fix for this was wrong; package now fails to build with this error on armel:

debian/rules:1270: *** Recursive variable `CONFIGURE_FLAGS' references itself (eventually). Stop.

http://launchpadlibrarian.net/65277930/buildlog_ubuntu-natty-armel.libreoffice_1%3A3.3.1-1ubuntu4_FAILEDTOBUILD.txt.gz

Instead of setting the arg and then filtering it (with the wrong type of makefile assignment), a better fix would be:

# ARM target
ifeq "$(ARCH)" "armel"
  ifeq "$(DIST)" "Ubuntu"
        CONFIGURE_FLAGS += --with-arm-target=7
  else
        CONFIGURE_FLAGS += --with-arm-target=4
  endif
endif
ifeq "$(ARCH)" "armhf"
        CONFIGURE_FLAGS += --with-arm-target=7
endif

But if bug #726529 is progressing, maybe this will all be obsolete soon anyway?

Regardless, the package still fails to build right now, so reopening this bug.