From: Uwe Hermann Date: Sat, 7 Apr 2018 17:44:14 +0000 (+0200) Subject: sigrok-native-appimage: Don't add the glibc version to the filename. X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-util.git;a=commitdiff_plain;h=35accad0c67952dc5510aa5b4a39b859ca08dabe sigrok-native-appimage: Don't add the glibc version to the filename. This is not really needed or useful in most cases, also not sure whether it's actually even correct in all cases. --- diff --git a/cross-compile/appimage/sigrok-native-appimage b/cross-compile/appimage/sigrok-native-appimage index cc27c59..4774c73 100755 --- a/cross-compile/appimage/sigrok-native-appimage +++ b/cross-compile/appimage/sigrok-native-appimage @@ -128,11 +128,10 @@ delete_blacklisted rm -r ./home ######################################################################## -# Determine the version of the app; also include needed glibc version +# Determine the version of the app ######################################################################## -GLIBC_NEEDED=$(glibc_needed) -VERSION="NIGHTLY.glibc$GLIBC_NEEDED" +VERSION="NIGHTLY" echo $VERSION ########################################################################