kinect_fetch_fw: don't use DESTDIR, it's not needed
[kinect-audio-setup.git] / kinect_fetch_fw
index 28a9fe7..6c39507 100755 (executable)
@@ -22,7 +22,7 @@ SDK_URL=${SDK_URL:-"http://download.microsoft.com/download/F/9/9/F99791F2-D5BE-4
 SDK_MD5="40764fe9e00911bda5095e5be777e311"
 
 [ $# -lt 1 ] && { echo "usage: $(basename "$0") <firmware destdir> [<path of kinect_upload_fw binary>]" 1>&2; exit 1; }
 SDK_MD5="40764fe9e00911bda5095e5be777e311"
 
 [ $# -lt 1 ] && { echo "usage: $(basename "$0") <firmware destdir> [<path of kinect_upload_fw binary>]" 1>&2; exit 1; }
-FW_DESTDIR=$(readlink -f $1)
+FW_DESTDIR=$(readlink -m $1)
 LOADER_PATH=${2:-"/usr/local/sbin/kinect_upload_fw"}
 
 command -v wget >/dev/null 2>&1 || { echo "$(basename "$0"): command 'wget' is needed." 1>&2 ; exit 1; }
 LOADER_PATH=${2:-"/usr/local/sbin/kinect_upload_fw"}
 
 command -v wget >/dev/null 2>&1 || { echo "$(basename "$0"): command 'wget' is needed." 1>&2 ; exit 1; }
@@ -39,7 +39,7 @@ Kinect Sensor device from the Microsoft Kinect for Windows SDK:
 http://kinectforwindows.org/
 
 The full license of the SDK can be found at:
 http://kinectforwindows.org/
 
 The full license of the SDK can be found at:
-http://www.kinectforwindows.org/download/EULA.htm
+http://research.microsoft.com/en-us/um/legal/kinectsdk-tou_noncommercial.htm
 
 EOM
 
 
 EOM
 
@@ -60,14 +60,14 @@ echo " done."
 
 FW_FILE=$(ls UACFirmware.* | cut -d ' ' -f 1)
 
 
 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")
 
 
 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" \
 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
 fi