aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiles Bader2014-09-19 15:33:13 +0900
committerMiles Bader2017-09-09 12:34:53 +0900
commitce9640845155c1dd9c11e46104f223af7cd4f7fa (patch)
tree591abc285a03214fbaf522b75e8e240351255620
parentb464dab2af90b5ebcf1925fcca144a9ed294e6a3 (diff)
downloademacs-ce9640845155c1dd9c11e46104f223af7cd4f7fa.tar.gz
emacs-ce9640845155c1dd9c11e46104f223af7cd4f7fa.zip
* admin/quick-install-emacs: Tweak configure.ac parsing
-rwxr-xr-xadmin/quick-install-emacs5
1 files changed, 4 insertions, 1 deletions
diff --git a/admin/quick-install-emacs b/admin/quick-install-emacs
index a5ec6965b19..76b3c646503 100755
--- a/admin/quick-install-emacs
+++ b/admin/quick-install-emacs
@@ -172,7 +172,10 @@ test x"$prefix" = x && { prefix="`get_config_var prefix`" || exit 4 ; }
172test x"$ARCH" = x && { ARCH="`get_config_var host`" || exit 4 ; } 172test x"$ARCH" = x && { ARCH="`get_config_var host`" || exit 4 ; }
173 173
174VERSION=` 174VERSION=`
175 sed -n 's/^AC_INIT(emacs,[ ]*\([^ )]*\).*/\1/p' <$SRC/configure.ac 175 sed -n 's/^AC_INIT([ ]*emacs[ ]*,[ ]*\([^ ),]*\).*/\1/p' <$SRC/configure.ac
176` || exit 4
177test -n "$VERSION" || VERSION=`
178 sed -n 's/^AC_INIT([ ]*GNU Emacs[ ]*,[ ]*\([^ ),]*\).*/\1/p' <$SRC/configure.ac
176` || exit 4 179` || exit 4
177test -n "$VERSION" || { printf '%s\n' >&2 "$me: no version in configure.ac"; exit 4; } 180test -n "$VERSION" || { printf '%s\n' >&2 "$me: no version in configure.ac"; exit 4; }
178 181