From a1595e3c938c2ce3415801c78388d8ddcbf0ea7c Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Mon, 2 Mar 2020 11:14:20 +0100 Subject: [PATCH] Revert "termux_step_install_{license,service_script}: install to massage dir" This reverts commit aa61bbf0b8e7ce69a0ff34baa4b794ec4f73742e. --- scripts/build/termux_step_install_license.sh | 12 ++++++------ scripts/build/termux_step_install_service_scripts.sh | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/build/termux_step_install_license.sh b/scripts/build/termux_step_install_license.sh index f68d4a6dc..65b1fa11b 100644 --- a/scripts/build/termux_step_install_license.sh +++ b/scripts/build/termux_step_install_license.sh @@ -1,7 +1,7 @@ termux_step_install_license() { [ "$TERMUX_PKG_METAPACKAGE" = "true" ] && return - mkdir -p "$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/share/doc/$TERMUX_PKG_NAME" + mkdir -p "$TERMUX_PREFIX/share/doc/$TERMUX_PKG_NAME" if [ ! "${TERMUX_PKG_LICENSE_FILE}" = "" ]; then local LICENSE @@ -9,7 +9,7 @@ termux_step_install_license() { if [ ! -f "$TERMUX_PKG_SRCDIR/$LICENSE" ]; then termux_error_exit "$TERMUX_PKG_SRCDIR/$LICENSE does not exist" fi - cp -f "${TERMUX_PKG_SRCDIR}/${LICENSE}" "$TERMUX_MASSAGEDIR/${TERMUX_PREFIX}/share/doc/${TERMUX_PKG_NAME}"/ + cp -f "${TERMUX_PKG_SRCDIR}/${LICENSE}" "${TERMUX_PREFIX}/share/doc/${TERMUX_PKG_NAME}"/ done else local COUNTER=0 @@ -17,16 +17,16 @@ termux_step_install_license() { while read -r LICENSE; do if [ -f "$TERMUX_SCRIPTDIR/packages/termux-licenses/LICENSES/${LICENSE}.txt" ]; then if [[ $COUNTER -gt 0 ]]; then - ln -sf "../../LICENSES/${LICENSE}.txt" "$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/share/doc/$TERMUX_PKG_NAME/LICENSE.${COUNTER}" + ln -sf "../../LICENSES/${LICENSE}.txt" "$TERMUX_PREFIX/share/doc/$TERMUX_PKG_NAME/LICENSE.${COUNTER}" else - ln -sf "../../LICENSES/${LICENSE}.txt" "$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/share/doc/$TERMUX_PKG_NAME/LICENSE" + ln -sf "../../LICENSES/${LICENSE}.txt" "$TERMUX_PREFIX/share/doc/$TERMUX_PKG_NAME/LICENSE" fi fi COUNTER=$((COUNTER + 1)) done < <(echo "$TERMUX_PKG_LICENSE" | sed "s/,/\n/g") - for LICENSE in "$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/share/doc/$TERMUX_PKG_NAME"/LICENSE*; do - if [ "$LICENSE" = "$TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/share/doc/$TERMUX_PKG_NAME/LICENSE*" ]; then + for LICENSE in "$TERMUX_PREFIX/share/doc/$TERMUX_PKG_NAME"/LICENSE*; do + if [ "$LICENSE" = "$TERMUX_PREFIX/share/doc/$TERMUX_PKG_NAME/LICENSE*" ]; then termux_error_exit "No LICENSE file was installed for $TERMUX_PKG_NAME" fi done diff --git a/scripts/build/termux_step_install_service_scripts.sh b/scripts/build/termux_step_install_service_scripts.sh index 8dc6849e9..93888d3eb 100644 --- a/scripts/build/termux_step_install_service_scripts.sh +++ b/scripts/build/termux_step_install_service_scripts.sh @@ -7,8 +7,8 @@ termux_step_install_service_scripts() { termux_error_exit "TERMUX_PKG_SERVICE_SCRIPT has to be an array of even length" fi - mkdir -p $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/var/service - cd $TERMUX_PKG_MASSAGEDIR/$TERMUX_PREFIX/var/service + mkdir -p $TERMUX_PREFIX/var/service + cd $TERMUX_PREFIX/var/service for ((i=0; i<${array_length}; i+=2)); do mkdir -p ${TERMUX_PKG_SERVICE_SCRIPT[$i]} # We unlink ${TERMUX_PKG_SERVICE_SCRIPT[$i]}/run if it exists to