From c591537064ced321e2e92f460fa44437af0c840d Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Fri, 19 Oct 2001 17:21:49 +0000 Subject: Exit if we can't find some variable. (AVOID): Add .orig & .rej files. (get_config_var): Be more liberal about format of config.status sed commands. --- admin/ChangeLog | 7 +++++++ admin/quick-install-emacs | 12 ++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) (limited to 'admin') diff --git a/admin/ChangeLog b/admin/ChangeLog index 9323c1f5194..529ecd1bfd0 100644 --- a/admin/ChangeLog +++ b/admin/ChangeLog @@ -1,3 +1,10 @@ +2001-10-20 Miles Bader + + * quick-install-emacs: Exit if we can't find some variable. + (AVOID): Add .orig & .rej files. + (get_config_var): Be more liberal about format of config.status + sed commands. + 2001-10-19 Gerd Moellmann * admin.el: New file. diff --git a/admin/quick-install-emacs b/admin/quick-install-emacs index c6ea67eb418..947f031c1e5 100755 --- a/admin/quick-install-emacs +++ b/admin/quick-install-emacs @@ -8,7 +8,7 @@ PUBLIC_LIBSRC_BINARIES='b2m emacsclient etags ctags ebrowse' PUBLIC_LIBSRC_SCRIPTS='grep-changelog rcs-checkin' -AVOID="CVS -DIC README COPYING ChangeLog ~ Makefile makefile stamp-subdir .cvsignore \.[cho]$ make-docfile testfile test-distrib" +AVOID="CVS -DIC README COPYING ChangeLog ~ \.orig$ \.rej$ Makefile makefile stamp-subdir .cvsignore \.[cho]$ make-docfile testfile test-distrib" # Prune old binaries lying around in the source tree PRUNE=no @@ -131,17 +131,17 @@ fi CONFIG_STATUS="$BUILD/config.status" function get_config_var () { - if ! $NAWK -F% '$2 == "@'$1'@" { print $3; ok=1; exit; }; END { exit(!ok); }' $CONFIG_STATUS + if ! sed -n "s/^s\(.\)@$1@\1\(.*\)\1.*$/\2/p" $CONFIG_STATUS | head -1 | grep '' then echo 1>&2 "$me: $1: Configuration variable not found in $CONFIG_STATUS" exit 4 fi } -test x"$SRC" = x && SRC="`get_config_var srcdir`" -test x"$prefix" = x && prefix="`get_config_var prefix`" -test x"$VERSION" = x && VERSION="`get_config_var version`" -test x"$ARCH" = x && ARCH="`get_config_var host`" +test x"$SRC" = x && { SRC="`get_config_var srcdir`" || exit 4 ; } +test x"$prefix" = x && { prefix="`get_config_var prefix`" || exit 4 ; } +test x"$VERSION" = x && { VERSION="`get_config_var version`" || exit 4 ; } +test x"$ARCH" = x && { ARCH="`get_config_var host`" || exit 4 ; } DST_SHARE="$prefix/share/emacs/$VERSION" DST_BIN="$prefix/bin" -- cgit v1.2.1