From owner-cvs-gnu Sun Apr 13 01:39:42 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA24112 for cvs-gnu-outgoing; Sun, 13 Apr 1997 01:39:42 -0700 (PDT) Received: (from joerg@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id BAA24105; Sun, 13 Apr 1997 01:39:40 -0700 (PDT) Date: Sun, 13 Apr 1997 01:39:40 -0700 (PDT) From: Joerg Wunsch Message-Id: <199704130839.BAA24105@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/tar extract.c Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk joerg 97/04/13 01:39:40 Modified: gnu/usr.bin/tar extract.c Log: Don't create anything on the disk if -O (aka --to-stdout) was given. PR: gnu/3247: tar -O creates directories... Revision Changes Path 1.5 +4 -1 src/gnu/usr.bin/tar/extract.c From owner-cvs-gnu Sun Apr 13 05:36:47 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id FAA02005 for cvs-gnu-outgoing; Sun, 13 Apr 1997 05:36:47 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id FAA01996; Sun, 13 Apr 1997 05:36:44 -0700 (PDT) Date: Sun, 13 Apr 1997 05:36:44 -0700 (PDT) From: Bruce Evans Message-Id: <199704131236.FAA01996@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/lib/libdialog dialog.3 Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 97/04/13 05:36:43 Modified: gnu/lib/libdialog dialog.3 Log: Fixed synopsis. There was a missing arg, 3 args with the wrong type, and many apparent dependendcies on from use of u_char. avoids u_char, so avoid it here too. Revision Changes Path 1.6 +22 -12 src/gnu/lib/libdialog/dialog.3 From owner-cvs-gnu Wed Apr 16 04:31:36 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA20704 for cvs-gnu-outgoing; Wed, 16 Apr 1997 04:31:36 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA20695; Wed, 16 Apr 1997 04:31:34 -0700 (PDT) Date: Wed, 16 Apr 1997 04:31:34 -0700 (PDT) From: Bruce Evans Message-Id: <199704161131.EAA20695@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/ld/rtld Makefile Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 97/04/16 04:31:33 Modified: gnu/usr.bin/ld/rtld Makefile Log: Fixed `make depend' and related bogons. LDFLAGS was used for ld-specific flags. LDFLAGS is really for ld-related flags for cc, not for ld, and some flags, e.g., -Bshareable, mean completely different things to cc and ld. Having the wrong things in LDFLAGS also broke the standard ${PROG} target. This was kludged around by using a special rule that depended on LDFLAGS being bogus. Fixing `make depend' broke the special rule but fixed the standard rule (except in the DESTDIR case, which was handled more strictly here than elsewhere). Revision Changes Path 1.24 +2 -10 src/gnu/usr.bin/ld/rtld/Makefile From owner-cvs-gnu Fri Apr 18 10:10:50 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA18950 for cvs-gnu-outgoing; Fri, 18 Apr 1997 10:10:50 -0700 (PDT) Received: (from jdp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id KAA18941; Fri, 18 Apr 1997 10:10:48 -0700 (PDT) Date: Fri, 18 Apr 1997 10:10:48 -0700 (PDT) From: John Polstra Message-Id: <199704181710.KAA18941@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/as read.c Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jdp 97/04/18 10:10:47 Branch: gnu/usr.bin/as RELENG_2_2 Modified: gnu/usr.bin/as read.c Log: Merge from main branch 1.9 -> 1.10: Support the ".p2align" directive. Revision Changes Path 1.7.2.1 +2 -1 src/gnu/usr.bin/as/read.c From owner-cvs-gnu Sat Apr 19 13:07:12 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA06475 for cvs-gnu-outgoing; Sat, 19 Apr 1997 13:07:12 -0700 (PDT) Received: (from wosch@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id NAA06466; Sat, 19 Apr 1997 13:07:07 -0700 (PDT) Date: Sat, 19 Apr 1997 13:07:07 -0700 (PDT) From: Wolfram Schneider Message-Id: <199704192007.NAA06466@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-gnu Subject: cvs commit: src/gnu/usr.bin/gzip zgrep.getopt Sender: owner-cvs-gnu@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wosch 97/04/19 13:07:03 Modified: gnu/usr.bin/gzip zgrep.getopt Log: Understand `--' to end processing of command options. This means one search for a string starting with a dash. Fix also filenames starting with a dash. Close PR #3349 Revision Changes Path 1.5 +5 -5 src/gnu/usr.bin/gzip/zgrep.getopt