From bb1fdf883333324339885f529a1e7a155484a354 Mon Sep 17 00:00:00 2001 From: Paul Reeves Date: Fri, 3 Feb 2023 15:02:47 +0100 Subject: [PATCH] Use long form option for cp --- test/testudrkit.sql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/testudrkit.sql b/test/testudrkit.sql index cb27cdf..7c30874 100644 --- a/test/testudrkit.sql +++ b/test/testudrkit.sql @@ -5,9 +5,10 @@ set names UTF8; input recreate_db.ddl; -- deploy the UDR library -shell cp -L ../build/x86_64-linux/libMyFirstUDRKit.so /opt/firebird/plugins/udr/ ; +shell cp --dereference ../build/x86_64-linux/libMyFirstUDRKit.so /opt/firebird/plugins/udr/ ; --- declare the UDR library - must be done before we declare database objects! +-- declare the UDR library - must be done before we declare +-- database objects that reference functions in the library! input ../sql/MyFirstUDRKit.ddl;