Skip to content
Commits on Source (2)
  • Aurelien Jarno's avatar
    ghc: drop wrong code reducing parallelism · f6ccfce7
    Aurelien Jarno authored
    Drop the export DEB_BUILD_OPTIONS, this is not the correct way to reduce
    parallelism. It prevents users to use a lower level of build parallelism
    (for example 1 in that case). The dh --max-parallel=maximum option
    should be used instead.
    
    Anyway in that case reducing the parallelism doesn't bring anything, it
    just make the build slower to succeed or fail. Therefore just drop the
    code.
    f6ccfce7
  • Gianfranco Costamagna's avatar
    Merge branch 'ghc-parallelism' into 'master' · 8277b0b7
    Gianfranco Costamagna authored
    ghc: drop wrong code reducing parallelism
    
    See merge request !2
    8277b0b7
......@@ -55,10 +55,6 @@ ifneq (,$(filter mips mipsel powerpc powerpcspe sparc64, $(DEB_HOST_ARCH)))
EXTRA_CONFIGURE_FLAGS += --disable-ld-override
endif
ifneq (,$(filter mips mipsel mips64el s390x, $(DEB_HOST_ARCH)))
export DEB_BUILD_OPTIONS=parallel=2
endif
%:
dh $@
......