This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch 3.6.x in repository nx-libs. from 942ae19 debian/rules: more Jessie unbreaking, also for dh_auto_{build,install}. new da51a36 nx-libs.spec: disable parallel builds, was pure luck that it worked before. new 72f11ee nx-X11/Makefile: pass down $(MFLAGS) to imake call, because... we probably want that. Likely. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: nx-X11/Makefile | 2 +- nx-libs.spec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch 3.6.x in repository nx-libs. commit da51a36948be6b5cfc200772bf5e51f8545ca4c3 Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Jun 17 01:32:58 2018 +0200 nx-libs.spec: disable parallel builds, was pure luck that it worked before. What actually happened was that MFLAGS were passed-through more correctly, which forced make into jobserver mode (due to the inclusion of --jobserver-fds=... in %{_smp_mflags}), but the processes were not able to read from their FD's, so it defaulted to non-parallel builds instead. --- nx-libs.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx-libs.spec b/nx-libs.spec index 3b46d42..8a8c229 100644 --- a/nx-libs.spec +++ b/nx-libs.spec @@ -412,7 +412,7 @@ FORCE_TIRPC='NO' FORCE_TIRPC='YES' %endif IMAKE_DEFINES="-DUseTIRPC=${FORCE_TIRPC}" -make %{?_smp_mflags} CONFIGURE="$PWD/my_configure" PREFIX=%{_prefix} LIBDIR=%{_libdir} CDEBUGFLAGS="${CDEBUGFLAGS}" LOCAL_LDFLAGS="${LOCAL_LDFLAGS}" SHLIBGLOBALSFLAGS="${SHLIBGLOBALSFLAGS}" IMAKE_DEFINES="${IMAKE_DEFINES}" +make CONFIGURE="$PWD/my_configure" PREFIX=%{_prefix} LIBDIR=%{_libdir} CDEBUGFLAGS="${CDEBUGFLAGS}" LOCAL_LDFLAGS="${LOCAL_LDFLAGS}" SHLIBGLOBALSFLAGS="${SHLIBGLOBALSFLAGS}" IMAKE_DEFINES="${IMAKE_DEFINES}" %install make install \ -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch 3.6.x in repository nx-libs. commit 72f11ee838e67757e235e7216fb82679cc3f7d67 Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Jun 17 01:41:37 2018 +0200 nx-X11/Makefile: pass down $(MFLAGS) to imake call, because... we probably want that. Likely. --- nx-X11/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx-X11/Makefile b/nx-X11/Makefile index 364a3ac..4249a71 100644 --- a/nx-X11/Makefile +++ b/nx-X11/Makefile @@ -70,7 +70,7 @@ xmakefile: else \ exit 0; \ fi - which $(IMAKE) 1>/dev/null && $(IMAKE_CMD) -s xmakefile -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT_DIR) + which $(IMAKE) 1>/dev/null && $(IMAKE_CMD) $(MFLAGS) -s xmakefile -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT_DIR) # don't allow any default rules in this Makefile .SUFFIXES: -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git