From: Antonio Ospite Date: Sat, 9 Jan 2016 11:12:07 +0000 (+0100) Subject: kinect_fetch_fw: don't use DESTDIR, it's not needed X-Git-Tag: v0.5~12 X-Git-Url: https://git.ao2.it/kinect-audio-setup.git/commitdiff_plain/6b70ec619aa4d2361a368a820591a0d45d23a7ef?hp=da6fb36709464674bf77992da028123d15d2d5dd kinect_fetch_fw: don't use DESTDIR, it's not needed If there is the need to install stuff under some common destination directory at installation time, the caller can prepend the path to the arguments passed to the script. --- diff --git a/kinect_fetch_fw b/kinect_fetch_fw index 081d3d5..6c39507 100755 --- a/kinect_fetch_fw +++ b/kinect_fetch_fw @@ -60,14 +60,14 @@ echo " done." FW_FILE=$(ls UACFirmware.* | cut -d ' ' -f 1) -install -d "${DESTDIR}${FW_DESTDIR}" -install -m 644 "$FW_FILE" "${DESTDIR}${FW_DESTDIR}" +install -d "${FW_DESTDIR}" +install -m 644 "$FW_FILE" "${FW_DESTDIR}" FIRMWARE_PATH=$FW_DESTDIR/$(basename "$FW_FILE") -if [ -f "${DESTDIR}/lib/udev/rules.d/55-kinect_audio.rules" ]; +if [ -f "/lib/udev/rules.d/55-kinect_audio.rules" ]; then sed -e "s|@LOADER_PATH@|$LOADER_PATH|g" \ -e "s|@FIRMWARE_PATH@|$FIRMWARE_PATH|g" \ - -i "${DESTDIR}/lib/udev/rules.d/55-kinect_audio.rules" + -i "/lib/udev/rules.d/55-kinect_audio.rules" fi