kinect_fetch_fw: don't use DESTDIR, it's not needed
authorAntonio Ospite <ao2@ao2.it>
Sat, 9 Jan 2016 11:12:07 +0000 (12:12 +0100)
committerAntonio Ospite <ao2@ao2.it>
Sat, 9 Jan 2016 13:51:37 +0000 (14:51 +0100)
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

index 081d3d5..6c39507 100755 (executable)
@@ -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