mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-06 18:09:44 +03:00
package/openjdk: copy all directories and files when installing
Several directories and files are currently not installed during the
target installation, these include:
- conf
Several configuration files, including security configuration files which
may be necessary for running various java applications.
- legal
This directory contains legal notices that some java applications may
require, as they may print legal information and will throw exceptions at
runtime if the legal files are not present on the system.
- release
This file contains a list of modules included in the image.
Because these directories take up less than of megabyte extra, it is not an
issue to install all of them.
Signed-off-by: Adam Duskett <Aduskett@gmail.com>
Reviewed-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
Tested-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit 63b576095b)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
f61ae43370
commit
0282033f42
@@ -123,9 +123,7 @@ endef
|
||||
# which makes manual installation necessary.
|
||||
define OPENJDK_INSTALL_TARGET_CMDS
|
||||
mkdir -p $(TARGET_DIR)$(OPENJDK_INSTALL_BASE)
|
||||
cp -dpfr $(@D)/build/linux-*-release/images/jre/bin/ \
|
||||
$(TARGET_DIR)$(OPENJDK_INSTALL_BASE)/
|
||||
cp -dpfr $(@D)/build/linux-*-release/images/jre/lib/ \
|
||||
cp -dpfr $(@D)/build/linux-*-release/images/jre/* \
|
||||
$(TARGET_DIR)$(OPENJDK_INSTALL_BASE)/
|
||||
cd $(TARGET_DIR)/usr/bin && ln -snf ../..$(OPENJDK_INSTALL_BASE)/bin/* .
|
||||
endef
|
||||
|
||||
Reference in New Issue
Block a user