From: Tom Tromey Date: Sat, 24 Oct 1998 15:20:31 +0000 (+0000) Subject: * m4/lispdir.m4: Fixed sed invocation. From Akim Demaille. X-Git-Tag: Release-1-3d~31 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a22879641c3cf10875903e4e063a9d42606087d2;p=thirdparty%2Fautomake.git * m4/lispdir.m4: Fixed sed invocation. From Akim Demaille. --- diff --git a/ChangeLog b/ChangeLog index e18c67352..a0e1dfef8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1998-10-24 Tom Tromey + + * m4/lispdir.m4: Fixed sed invocation. From Akim Demaille. + 1998-10-20 Tom Tromey * automake.in (scan_dependency_file): Fixed test on `while' loop. diff --git a/m4/lispdir.m4 b/m4/lispdir.m4 index 1f8ad10a3..981ba88cc 100644 --- a/m4/lispdir.m4 +++ b/m4/lispdir.m4 @@ -14,7 +14,7 @@ AC_DEFUN(AM_PATH_LISPDIR, AC_MSG_CHECKING([where .elc files should go]) dnl Set default value lispdir="\$(datadir)/emacs/site-lisp" - emacs_flavor=`echo "$EMACS" | sed -e ',^.*/,,'` + emacs_flavor=`echo "$EMACS" | sed -e 's,^.*/,,'` if test "x$prefix" = "xNONE"; then if test -d $ac_default_prefix/share/$emacs_flavor/site-lisp; then lispdir="\$(prefix)/share/$emacs_flavor/site-lisp"