From f9e2602a754f0210ce81d351a2c34ec3386c4733 Mon Sep 17 00:00:00 2001 From: Nabil Ghodbane Date: Fri, 27 Oct 2023 09:04:54 +0200 Subject: [PATCH] fix error in sip script implementation. esac should close case --- products/compil_scripts/sip-5.5.0.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/products/compil_scripts/sip-5.5.0.sh b/products/compil_scripts/sip-5.5.0.sh index 3e0282b..82ccf0f 100755 --- a/products/compil_scripts/sip-5.5.0.sh +++ b/products/compil_scripts/sip-5.5.0.sh @@ -9,7 +9,7 @@ LINUX_DISTRIBUTION="$DIST_NAME$DIST_VERSION" rm -rf $BUILD_DIR mkdir $BUILD_DIR cd $BUILD_DIR -cp -R $SOURCE_DIR/sip-5.5.0 . +cp -r $SOURCE_DIR/sip-5.5.0 . USE_SETUP=true case $LINUX_DISTRIBUTION in @@ -18,7 +18,7 @@ case $LINUX_DISTRIBUTION in ;; *) ;; -fi +esac # we don't install in python directory -> modify environment as described in INSTALL file export PATH=$(pwd)/bin:$PATH -- 2.39.2