Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package java-1_8_0-openjdk for 
openSUSE:Factory checked in at 2022-08-25 15:33:12
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/java-1_8_0-openjdk (Old)
 and      /work/SRC/openSUSE:Factory/.java-1_8_0-openjdk.new.2083 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "java-1_8_0-openjdk"

Thu Aug 25 15:33:12 2022 rev:90 rq:999069 version:1.8.0.345

Changes:
--------
--- /work/SRC/openSUSE:Factory/java-1_8_0-openjdk/java-1_8_0-openjdk.changes    
2022-08-04 13:22:53.376400976 +0200
+++ 
/work/SRC/openSUSE:Factory/.java-1_8_0-openjdk.new.2083/java-1_8_0-openjdk.changes
  2022-08-25 15:33:19.223953747 +0200
@@ -1,0 +2,5 @@
+Wed Aug 24 10:48:55 UTC 2022 - Andreas Schwab <sch...@suse.de>
+
+- make-jobserver-detection.patch: Fix detection of jobserver support
+
+-------------------------------------------------------------------

New:
----
  make-jobserver-detection.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ java-1_8_0-openjdk.spec ++++++
--- /var/tmp/diff_new_pack.urcXjR/_old  2022-08-25 15:33:20.359956228 +0200
+++ /var/tmp/diff_new_pack.urcXjR/_new  2022-08-25 15:33:20.367956246 +0200
@@ -180,6 +180,8 @@
 Patch12:        adlc-parser.patch
 # Avoid triggering inactivity timeout while generating javadoc in zero VM
 Patch14:        zero-javadoc-verbose.patch
+# Fix detection of jobserver support
+Patch15:        make-jobserver-detection.patch
 #
 # OpenJDK specific patches
 #
@@ -516,6 +518,8 @@
 patch -p0 -i %{PATCH14}
 %endif
 
+patch -p0 -i %{PATCH15}
+
 %ifarch ppc ppc64 ppc64le
 # PPC fixes
 patch -p0 -i %{PATCH103}

++++++ make-jobserver-detection.patch ++++++
Index: openjdk/make/MakeHelpers.gmk
===================================================================
--- openjdk/make/MakeHelpers.gmk.orig
+++ openjdk/make/MakeHelpers.gmk
@@ -145,7 +145,7 @@ endef
 
 # Hook to be called as the very first thing when running a normal build
 define AtMakeStart
-       $(if $(findstring --jobserver,$(MAKEFLAGS)),$(error make -j is not 
supported, use make JOBS=n))
+       $(if $(findstring jobserver,$(.FEATURES)),,$(error make -j is not 
supported, use make JOBS=n))
        $(call CheckEnvironment)
        @$(PRINTF) $(LOG_INFO) "Running make as '$(MAKE) $(MFLAGS) 
$(MAKE_ARGS)'\n"
        @$(PRINTF) "Building $(PRODUCT_NAME) for target '$(call GetRealTarget)' 
in configuration '$(CONF_NAME)'\n\n"

Reply via email to