From: Roland McGrath Date: Fri, 8 Jul 1994 18:33:15 +0000 (+0000) Subject: Split a shell command line in @example to avoid overfull hbox. X-Git-Tag: 3.71.2~31 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=51250a676d11f807c18fab4bd2a50bba55883cc1;p=thirdparty%2Fmake.git Split a shell command line in @example to avoid overfull hbox. --- diff --git a/make.texinfo b/make.texinfo index c088e5fa..26859ded 100644 --- a/make.texinfo +++ b/make.texinfo @@ -2581,7 +2581,8 @@ called @file{@var{name}.d} from a C source file called @file{@var{name}.c}: @example @group %.d: %.c - $(SHELL) -ec '$(CC) -M $(CPPFLAGS) $< | sed '\''s/$*.o/& $@@/g'\'' > $@@' + $(SHELL) -ec '$(CC) -M $(CPPFLAGS) $< \ + | sed '\''s/$*.o/& $@@/g'\'' > $@@' @end group @end example