diff options
author | Ken Raeburn <raeburn@raeburn.org> | 2010-05-15 17:12:44 -0400 |
---|---|---|
committer | Ken Raeburn <raeburn@raeburn.org> | 2010-05-15 17:12:44 -0400 |
commit | e45b9e19390a085528f1fc643e8cc1800599ee5f (patch) | |
tree | 9e57b9d6239c4b685edc7d9366d66c8d227260e5 /admin/quick-install-emacs | |
parent | 8c5ff6dd241db176fb178b4d84dbab93ad2475c9 (diff) | |
download | emacs-e45b9e19390a085528f1fc643e8cc1800599ee5f.tar.gz emacs-e45b9e19390a085528f1fc643e8cc1800599ee5f.tar.bz2 emacs-e45b9e19390a085528f1fc643e8cc1800599ee5f.zip |
Update scripts and text to refer to version number string in emacs.c
instead of version.el.
Diffstat (limited to 'admin/quick-install-emacs')
-rwxr-xr-x | admin/quick-install-emacs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/quick-install-emacs b/admin/quick-install-emacs index b912ed4e3ff..d603d8fd0d6 100755 --- a/admin/quick-install-emacs +++ b/admin/quick-install-emacs @@ -171,7 +171,7 @@ test x"$SRC" = x && { SRC="`get_config_var srcdir`" || exit 4 ; } test x"$prefix" = x && { prefix="`get_config_var prefix`" || exit 4 ; } test x"$ARCH" = x && { ARCH="`get_config_var host`" || exit 4 ; } -VERSION=`grep 'defconst[ ]*emacs-version' $SRC/lisp/version.el \ +VERSION=`grep 'char emacs_version' $SRC/src/emacs.c \ | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'` DST_SHARE="$prefix/share/emacs/$VERSION" |