This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "grep".
The branch, master has been updated
via e4994366166059c7320fbb97a930100b1cc79e61 (commit)
from c40e7f7158109985b901ae67e5faa06160547471 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/grep.git/commit/?id=e4994366166059c7320fbb97a930100b1cc79e61
commit e4994366166059c7320fbb97a930100b1cc79e61
Author: Jim Meyering <[email protected]>
Date: Wed Mar 26 21:57:48 2014 -0700
maint: fix "make dist"
* src/Makefile.am (egrep fgrep): Specify egrep.sh via
$(srcdir)/egrep.sh, so non-srcdir builds work once again.
diff --git a/src/Makefile.am b/src/Makefile.am
index 27a2bc3..3487848 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -49,7 +49,7 @@ egrep fgrep: egrep.sh Makefile
case $@ in egrep) option=-E;; fgrep) option=-F;; esac && \
sed -e 's|[@]SHELL@|$(SHELL)|g' \
-e "s|[@]grep@|$$grep|g" \
- -e "s|[@]option@|$$option|g" <egrep.sh >$@-t
+ -e "s|[@]option@|$$option|g" <$(srcdir)/egrep.sh >$@-t
$(AM_V_at)chmod +x $@-t
$(AM_V_at)mv $@-t $@
-----------------------------------------------------------------------
Summary of changes:
src/Makefile.am | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
grep