This is the mail archive of the libc-hacker@cygnus.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Sort changes in manual breaks make install


Andreas Jaeger <aj@arthur.rhein-neckar.de> writes:

|> Hi,
|> 
|> one hours ago I made a cvs update and tried to install the current CVS 
|> version.  make install aborts with:
|> 
|> tring.texi stpcpy.c.texi strdupa.c.texi strncat.c.texi mbyte.texi locale.texi me
|> ssage.texi search.texi search.c.texi pattern.texi io.texi stdio.texi rprintf.c.t
|> exi memopen.c.texi memstrm.c.texi fmtmsgexpl.c.texi llio.texi select.c.texi file
|> sys.texi dir.c.texi dir2.c.texi pipe.texi pipe.c.texi popen.c.texi socket.texi m
|> kfsock.c.texi mkisock.c.texi isockad.c.texi inetcli.c.texi inetsrv.c.texi filesr
|> v.c.texi filecli.c.texi terminal.texi termios.c.texi math.texi arith.texi time.t
|> exi strftim.c.texi setjmp.texi setjmp.c.texi signal.texi sigh1.c.texi sigusr.c.t
|> exi startup.texi getopt.texi testopt.c.texi longopt.c.texi argp.texi argp-ex1.c.
|> texi argp-ex2.c.texi argp-ex3.c.texi argp-ex4.c.texi subopt.c.texi atexit.c.texi
|>  process.texi job.texi nss.texi nsswitch.texi users.texi db.c.texi sysinfo.texi 
|> conf.texi ../crypt/crypt.texi ../linuxthreads/linuxthreads.texi lang.texi add.c.
|> texi header.texi install.texi maint.texi contrib.texi lgpl.texinfo | sort -t'^L'
|>  -df +0 -1 | tr '\014' '\012' > summary-tmp
|> sort: unrecognized option `-L'
|> 
|> I guess the following change breaks make install for me:

No, Ulrich did not install my patch correctly, the '^L' must be changed
to a literal Ctrl-L ''.

--- libc/manual/Makefile.~1~	Mon Jan 11 10:46:17 1999
+++ libc/manual/Makefile	Mon Jan 11 10:46:39 1999
@@ -74,7 +74,7 @@
 # Generate the summary from the Texinfo source files for each chapter.
 summary.texi: stamp-summary ;
 stamp-summary: summary.awk $(filter-out summary.texi, $(texis))
-	$(AWK) -f $^ | sort -t'^L' -df +0 -1 | tr '\014' '\012' > summary-tmp
+	$(AWK) -f $^ | sort -t'' -df +0 -1 | tr '\014' '\012' > summary-tmp
 	$(move-if-change) summary-tmp summary.texi
 	touch $@
 

-- 
Andreas Schwab                                      "And now for something
schwab@issan.cs.uni-dortmund.de                      completely different"
schwab@gnu.org


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]