]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix installer build
authorPhillip Lord <phillip.lord@russet.org.uk>
Thu, 26 Dec 2019 22:01:02 +0000 (23:01 +0100)
committerPhillip Lord <phillip.lord@russet.org.uk>
Thu, 26 Dec 2019 22:01:02 +0000 (23:01 +0100)
* admin/nt/dist-build/build-zips.sh: Ensure that NSIS build always
  uses the actual build number to locate its files.

admin/nt/dist-build/build-zips.sh

index cff6fdec3e03ae98fbdd1da9f92986bfd74d405e..d8cbee30754b07e81f66ea514fa8d09b713e7749 100755 (executable)
@@ -160,23 +160,27 @@ while getopts "36gb:hnsiV:" opt; do
   esac
 done
 
-if [ -z $VERSION ];
+
+## ACTUAL_VERSION is the version declared by emacs
+if [ -z $ACTUAL_VERSION ];
 then
-    VERSION=`
+    ACTUAL_VERSION=`
   sed -n 's/^AC_INIT(GNU Emacs,[        ]*\([^  ,)]*\).*/\1/p' < ../../../configure.ac
 `
 fi
 
-if [ -z $VERSION ];
+if [ -z $ACTUAL_VERSION ];
 then
     echo [build] Cannot determine Emacs version
     exit 1
 fi
 
+## VERSION is the version that we want to call Emacs
+VERSION=$ACTUAL_VERSION
+
+
 MAJOR_VERSION="$(echo $VERSION | cut -d'.' -f1)"
 
-## ACTUAL VERSION is the version declared by emacs
-ACTUAL_VERSION=$VERSION
 
 ## VERSION includes the word snapshot if necessary
 VERSION=$VERSION$SNAPSHOT