summaryrefslogtreecommitdiffstats
path: root/recipes-core/openjdk/patches-openjdk-8/openjdk8-fix-assembler-flag-handling-in-makefile.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-core/openjdk/patches-openjdk-8/openjdk8-fix-assembler-flag-handling-in-makefile.patch')
-rw-r--r--recipes-core/openjdk/patches-openjdk-8/openjdk8-fix-assembler-flag-handling-in-makefile.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/recipes-core/openjdk/patches-openjdk-8/openjdk8-fix-assembler-flag-handling-in-makefile.patch b/recipes-core/openjdk/patches-openjdk-8/openjdk8-fix-assembler-flag-handling-in-makefile.patch
deleted file mode 100644
index 3e4f156..0000000
--- a/recipes-core/openjdk/patches-openjdk-8/openjdk8-fix-assembler-flag-handling-in-makefile.patch
+++ /dev/null
@@ -1,20 +0,0 @@
1Delay $CXX insertion until after make has evaluated the comma-separated list,
2as any comma separated parameters in CXX (such as assembler arguments) would
3break the build
4
5Signed-off-by: Erkka Kääriä <erkka.kaaria@intel.com>
6
7Upstream-Status: Pending
8
9---
10--- make/common/NativeCompilation.gmk
11+++ make/common/NativeCompilation.gmk
12@@ -376,7 +376,7 @@ define SetupNativeCompilation
13 $$(foreach p,$$($1_SRCS), \
14 $$(eval $$(call add_native_source,$1,$$p,$$($1_OBJECT_DIR), \
15 $$($1_CFLAGS) $$($1_EXTRA_CFLAGS),$$($1_CC), \
16- $$($1_CXXFLAGS) $$($1_EXTRA_CXXFLAGS),$(CXX),$$($1_ASFLAGS))))
17+ $$($1_CXXFLAGS) $$($1_EXTRA_CXXFLAGS),$$(CXX),$$($1_ASFLAGS))))
18
19 # On windows we need to create a resource file
20 ifeq ($(OPENJDK_TARGET_OS), windows)