From 6b70ec619aa4d2361a368a820591a0d45d23a7ef Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Sat, 9 Jan 2016 12:12:07 +0100 Subject: [PATCH 1/1] 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. --- kinect_fetch_fw | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 -- 2.1.4