Hi Karl, I just stumbled over these.
Cheers, Ralf 2010-01-24 Ralf Wildenhues <[email protected]> Fix typos in makefile example sed commands. * doc/make-stds.texi (Makefile Basics): Fix typos in sed commands. diff --git a/doc/make-stds.texi b/doc/make-stds.texi index 9fe29d3..6280df8 100644 --- a/doc/make-stds.texi +++ b/doc/make-stds.texi @@ -91,7 +91,7 @@ to @file{configure}. A rule of the form: @smallexample foo.1 : foo.man sedscript - sed -e sedscript foo.man > foo.1 + sed -f sedscript foo.man > foo.1 @end smallexample @noindent @@ -125,7 +125,7 @@ way to make the rule work well. For example, the target above for @smallexample foo.1 : foo.man sedscript - sed -e $(srcdir)/sedscript $(srcdir)/foo.man > $@@ + sed -f $(srcdir)/sedscript $(srcdir)/foo.man > $@@ @end smallexample GNU distributions usually contain some files which are not source
