From a633282767a00e3788b6095d83b3573cacb4e25b Mon Sep 17 00:00:00 2001 From: Greg Zharun Date: Wed, 5 Nov 2014 15:36:44 +0200 Subject: [PATCH] [Summary] Fixed packaging on Windows after program name change --- tools/windows_packaging/package_win32.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/windows_packaging/package_win32.sh b/tools/windows_packaging/package_win32.sh index 4f68fe406f..12f83502ea 100755 --- a/tools/windows_packaging/package_win32.sh +++ b/tools/windows_packaging/package_win32.sh @@ -103,7 +103,7 @@ vamp-sdk-2.dll cd $BASE || exit 1 PRODUCT_NAME_DIR="tracks" -PRODUCT_EXECUTABLE_NAME="tracks.exe" +PRODUCT_EXECUTABLE_NAME="trackslive.exe" if ! test -f $BUILD_CACHE_FILE; then echo "ERROR: $APPNAME is not configured and built yet..." @@ -137,7 +137,7 @@ echo "Deleting import libs ..." rm $PACKAGE_DIR/lib/*dll.a || exit 1 # delete sh script that was copied over -rm $PACKAGE_DIR/${PRODUCT_NAME_DIR} || exit 1 +rm $PACKAGE_DIR/${PRODUCT_EXECUTABLE_NAME%.*} || exit 1 if test x$WITH_TESTS != x ; then echo "Copying tests and test data to $PACKAGE_DIR ..."