Remove a hack to create symlink to libjli.so. java/openjdk8 does not need
this hack any more because it is statically linked now.
This commit is contained in:
parent
a548434ab2
commit
eff95d7ef9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=354286
1 changed files with 0 additions and 15 deletions
|
@ -11,21 +11,6 @@
|
|||
export IT_JAVACFLAGS=$(IT_JAVAC_SETTINGS) -source $(IT_LANGUAGE_SOURCE_VERSION) -target $(IT_CLASS_TARGET_VERSION)
|
||||
|
||||
#
|
||||
@@ -2189,6 +2189,14 @@
|
||||
ln -sf ./$(JRE_ARCH_DIR) \
|
||||
$(BOOT_DIR)/jre/lib/$(INSTALL_ARCH_DIR); \
|
||||
fi;
|
||||
+ mkdir -p $(BOOT_DIR)/lib && \
|
||||
+ ln -sf $(SYSTEM_JDK_DIR)/lib/$(JRE_ARCH_DIR) \
|
||||
+ $(BOOT_DIR)/lib/ && \
|
||||
+ if ! test -d $(BOOT_DIR)/lib/$(INSTALL_ARCH_DIR); \
|
||||
+ then \
|
||||
+ ln -sf ./$(JRE_ARCH_DIR) \
|
||||
+ $(BOOT_DIR)/lib/$(INSTALL_ARCH_DIR); \
|
||||
+ fi;
|
||||
mkdir -p $(BOOT_DIR)/include && \
|
||||
for i in $(SYSTEM_JDK_DIR)/include/*; do \
|
||||
test -r $$i | continue; \
|
||||
--- configure 2014-04-02 06:21:18.000335000 -0400
|
||||
+++ configure 2014-05-15 17:04:42.000000000 -0400
|
||||
@@ -626,6 +626,8 @@
|
||||
|
|
Loading…
Reference in a new issue