From 38dd78a5e7f3cd0b5969b400bab0246b37eef251 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucio=20Andr=C3=A9s=20Illanes=20Albornoz=20=28arab=2C=20vx?= =?UTF-8?q?p=29?= Date: Wed, 7 Dec 2016 17:09:14 +0100 Subject: etc/midipix_check.sh, subr/build.subr: remove unused/unnecessary script. --- etc/midipix_check.sh | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100755 etc/midipix_check.sh (limited to 'etc') diff --git a/etc/midipix_check.sh b/etc/midipix_check.sh deleted file mode 100755 index f669de44..00000000 --- a/etc/midipix_check.sh +++ /dev/null @@ -1,51 +0,0 @@ -#!/bin/sh - -set -o errexit -o noglob; -if [ "${1}" = "-m" ]; then - MIDIPIX_DNAME_DIST=minipix; shift; -fi; -if [ -n "${1}" ]; then - MIDIPIX_PATH=$(cygpath -am "${1}"); -else - MIDIPIX_PATH=$(cygpath -am .); -fi; -: ${MIDIPIX_DNAME_DIST:=native}; -echo "Absolute Midipix pathname: ${MIDIPIX_PATH}"; -echo "Distribution name : ${MIDIPIX_DNAME_DIST}"; -printf "%-85s" "Checking if all binaries are present..."; -for __ in chroot env ntctty.exe; do - if [ ! -e ${MIDIPIX_PATH}/${MIDIPIX_DNAME_DIST}/bin/${__} ]; then - printf "\nerror: missing file ${MIDIPIX_PATH}/${MIDIPIX_DNAME_DIST}/bin/${__}\n"; - exit 2; - fi; -done; -printf "\033[97m[ \033[92mOK \033[97m]\033[0m\n"; -printf "%-85s" "Checking ${MIDIPIX_PATH}/${MIDIPIX_DNAME_DIST}/lib for symbolic links..."; -if [ -n "$(find ${MIDIPIX_DNAME_DIST}/lib \ - -maxdepth 1 -name \*.so -type l -print -quit)" ]; then - echo; - echo "Warning: ${MIDIPIX_PATH}/${MIDIPIX_DNAME_DIST}/lib contains shared objects (library" - echo "images) that are symbolic links. This is not supported by Midipix at" - echo "present and commonly occurs if the binary distribution tarball was" - echo "extracted by an application that does not support symbolic links" - echo "correctly. This also occurs when a binary distribution was built locally." - printf "Convert all shared object symbolic links to hard links? (y|N) "; - read __; - case "${__}" in - [yY]) break; ;; - *) echo "Exiting."; exit 3; ;; - esac; - for LINK_NAME in $(find ${MIDIPIX_PATH}/${MIDIPIX_DNAME_DIST}/lib \ - -maxdepth 1 -name \*.so -type l); do - LINK_TARGET="$(readlink -- "${LINK_NAME}")"; - if [ -f "${MIDIPIX_PATH}/native/lib/${LINK_TARGET}" ]; then - echo rm -f -- "${LINK_NAME}"; - rm -f -- "${LINK_NAME}"; - echo ln -f -- "${LINK_TARGET}" "${LINK_NAME}"; - ln -f -- "${LINK_TARGET}" "${LINK_NAME}"; - fi; - done; -fi; -printf "\033[97m[ \033[92mOK \033[97m]\033[0m\n"; - -# vim:filetype=sh -- cgit v1.2.3