From owner-freebsd-current Wed May 29 07:03:11 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id HAA06276 for current-outgoing; Wed, 29 May 1996 07:03:11 -0700 (PDT) Received: from lear35.cytex.com (root@lear35.cytex.com [38.252.97.5]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id HAA06269 for ; Wed, 29 May 1996 07:03:08 -0700 (PDT) Received: (from mbartley@localhost) by lear35.cytex.com (8.7.5/8.7.3) id HAA00850 for freebsd-current@freebsd.org; Wed, 29 May 1996 07:03:04 -0700 (PDT) From: Matt Bartley Message-Id: <199605291403.HAA00850@lear35.cytex.com> Subject: lib/libc/stdio/Makefile.inc To: freebsd-current@freebsd.org Date: Wed, 29 May 1996 07:03:04 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL16 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-current@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Make world last night bombed during install of libc. I traced the error to a typo in lib/libc/stdio/Makefile.inc: *** lib/libc/stdio/Makefile.inc.broken Tue May 28 19:49:41 1996 --- lib/libc/stdio/Makefile.inc Wed May 29 06:52:25 1996 *************** *** 33,39 **** MLINKS+=mktemp.3 mkstemp.3 MLINKS+=printf.3 fprintf.3 printf.3 snprintf.3 printf.3 sprintf.3 \ printf.3 vfprintf.3 printf.3 vprintf.3 printf.3 vsnprintf.3 \ ! printf.3 vsprintf.3 printf.3 asprintf.3 printf.3 vasprintf MLINKS+=putc.3 fputc.3 putc.3 putchar.3 putc.3 putw.3 MLINKS+=scanf.3 fscanf.3 scanf.3 sscanf.3 scanf.3 vfscanf.3 scanf.3 vscanf.3 \ scanf.3 vsscanf.3 --- 33,39 ---- MLINKS+=mktemp.3 mkstemp.3 MLINKS+=printf.3 fprintf.3 printf.3 snprintf.3 printf.3 sprintf.3 \ printf.3 vfprintf.3 printf.3 vprintf.3 printf.3 vsnprintf.3 \ ! printf.3 vsprintf.3 printf.3 asprintf.3 printf.3 vasprintf.3 MLINKS+=putc.3 fputc.3 putc.3 putchar.3 putc.3 putw.3 MLINKS+=scanf.3 fscanf.3 scanf.3 sscanf.3 scanf.3 vfscanf.3 scanf.3 vscanf.3 \ scanf.3 vsscanf.3 This caused a no such file error when it tried to link the vasprintf man page to the printf man page.