diff options
| author | Glenn Morris | 2014-11-25 08:43:52 -0800 |
|---|---|---|
| committer | Glenn Morris | 2014-11-25 08:43:52 -0800 |
| commit | 7dbd10d530f9c5688ad76e5ddabf53e3cd5579cf (patch) | |
| tree | f0fff4ca512b94ea3896d42f4f42d39c74013de4 | |
| parent | cfe0d44ecbaf5fb79fbbe2a1dec8c722a289f266 (diff) | |
| download | emacs-7dbd10d530f9c5688ad76e5ddabf53e3cd5579cf.tar.gz emacs-7dbd10d530f9c5688ad76e5ddabf53e3cd5579cf.zip | |
* configure.ac: Fix yesterday's use of uninitialised $version.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.ac | 2 |
2 files changed, 5 insertions, 1 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2014-11-25 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * configure.ac: Fix yesterday's use of uninitialised $version. | ||
| 4 | |||
| 1 | 2014-11-25 Oscar Fuentes <ofv@wanadoo.es> | 5 | 2014-11-25 Oscar Fuentes <ofv@wanadoo.es> |
| 2 | 6 | ||
| 3 | * configure.ac [MINGW]: Set $canonical default value as per the | 7 | * configure.ac [MINGW]: Set $canonical default value as per the |
diff --git a/configure.ac b/configure.ac index 6b6b1c7d22f..8830ec7e090 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -1914,7 +1914,7 @@ if test "${HAVE_W32}" = "yes"; then | |||
| 1914 | *) EMACS_MANIFEST="emacs-x86.manifest" ;; | 1914 | *) EMACS_MANIFEST="emacs-x86.manifest" ;; |
| 1915 | esac | 1915 | esac |
| 1916 | dnl Construct something of the form "24,4,0,0" with 4 components. | 1916 | dnl Construct something of the form "24,4,0,0" with 4 components. |
| 1917 | comma_version=`echo "$version.0.0" | sed -e 's/\./,/g' -e 's/^\([[^,]]*,[[^,]]*,[[^,]]*,[[^,]]*\).*/\1/'` | 1917 | comma_version=`echo "${PACKAGE_VERSION}.0.0" | sed -e 's/\./,/g' -e 's/^\([[^,]]*,[[^,]]*,[[^,]]*,[[^,]]*\).*/\1/'` |
| 1918 | 1918 | ||
| 1919 | comma_space_version=`echo "$comma_version" | sed 's/,/, /g'` | 1919 | comma_space_version=`echo "$comma_version" | sed 's/,/, /g'` |
| 1920 | AC_SUBST(comma_version) | 1920 | AC_SUBST(comma_version) |