summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-07-02 05:21:50 +0200
committerRobin Gareus <robin@gareus.org>2015-07-02 05:21:50 +0200
commit60495f7b5ff4e7bedb02f7d0d67ae9b6c59b5fa6 (patch)
tree26014ec60e7411ae59de9d10be3b7d52a88ade6d /tools
parent94ba8baa25713b6b63c365467e60622bc56d84cf (diff)
why does it have to be so hard to get all filenames right?!
Diffstat (limited to 'tools')
-rwxr-xr-xtools/linux_packaging/build6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index c3f8281f82..bc35f49925 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -243,9 +243,9 @@ sed -e "/^%ENV%/r $ENVIRONMENT" -e '/^%ENV%/d' -e 's/%VER%/'"${release_version}"
rm $ENVIRONMENT && chmod 775 $APPBIN/${EXENAME}${major_version}
echo "Copying ardour executable ...."
-cp -v $BUILD_ROOT/gtk2_ardour/ardour-${release_version} $APPBIN/${EXENAME}-${major_version}
+cp -v $BUILD_ROOT/gtk2_ardour/ardour-${release_version} $APPBIN/${EXENAME}-${release_version}
if test x$STRIP = xall ; then
- strip $APPBIN/${EXENAME}-${major_version}
+ strip $APPBIN/${EXENAME}-${release_version}
fi
# copy locale files
@@ -427,7 +427,7 @@ deplibs=
while [ true ] ; do
missing=false
filelist=`find $APPLIB/ -type f`
- filelist="$APPBIN/${EXENAME}-${major_version} $filelist"
+ filelist="$APPBIN/${EXENAME}-${release_version} $filelist"
for file in $filelist ; do
if ! file $file | grep -qs ELF ; then