From 0ecfa9e24b754fa590bdf3f3734f45ecf5e33d57 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Fri, 16 Dec 2016 17:16:51 +0100 Subject: [PATCH] Compiler/roor/build6 - use install(1) to install Oracle InstantClient libraries and header files --- Compiler/root/build6 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Compiler/root/build6 b/Compiler/root/build6 index 3e6e0c1..d506a42 100755 --- a/Compiler/root/build6 +++ b/Compiler/root/build6 @@ -44,8 +44,8 @@ pbuild::install() { } pbuild::post_install_Linux() { - cp -av "${INSTANTCLIENT_LIBRARY_DIR}"/* "${PREFIX}"/lib - cp -av "${INSTANTCLIENT_INCLUDE_DIR}"/* "${PREFIX}"/include + install -m 0644 "${INSTANTCLIENT_LIBRARY_DIR}"/* "${PREFIX}"/lib + install -m 0644 "${INSTANTCLIENT_INCLUDE_DIR}"/* "${PREFIX}"/include } pbuild::add_to_group 'Compiler'