From owner-freebsd-ports Mon Aug 12 21:05:29 1996 Return-Path: owner-ports Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id VAA14097 for ports-outgoing; Mon, 12 Aug 1996 21:05:29 -0700 (PDT) Received: from paris.CS.Berkeley.EDU (paris.CS.Berkeley.EDU [128.32.34.47]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id VAA14081 for ; Mon, 12 Aug 1996 21:05:23 -0700 (PDT) Received: from paris.CS.Berkeley.EDU (localhost.Berkeley.EDU [127.0.0.1]) by paris.CS.Berkeley.EDU (8.6.11/8.6.9) with ESMTP id VAA23872; Mon, 12 Aug 1996 21:05:18 -0700 From: Josh MacDonald Message-Id: <199608130405.VAA23872@paris.CS.Berkeley.EDU> To: "Jordan K. Hubbard" cc: karl@mcs.net, freebsd-ports@freebsd.org Subject: Re: Ports explosion In-reply-to: Your message of "Mon, 12 Aug 1996 20:15:17 PDT." <3619.839906117@time.cdrom.com> Date: Mon, 12 Aug 1996 21:05:17 -0700 Sender: owner-ports@freebsd.org X-Loop: FreeBSD.org Precedence: bulk May I suggest: if [ -d patches -a "`echo patches/patch-*`" != "patches/patch-*" ]; then # do stuff fi instead of the current [ -d patches ]? -josh > > Actually, the patches directory is not supposed to be there. My guess > > is that you did a "cvs update" without the "-P" (prune) option. > > Actually, that's because he first checked it out without pruning (Karl > needs to read up on CVS a little more). I noticed that in his > example. > > Karl, watch closely.. :-) > > jkh@time-> cvs co zip > cvs checkout: Updating zip > U zip/Makefile > cvs checkout: Updating zip/files > U zip/files/md5 > cvs checkout: Updating zip/patches > cvs checkout: Updating zip/pkg > U zip/pkg/COMMENT > U zip/pkg/DESCR > U zip/pkg/PLIST > jkh@time-> ls zip/patches > CVS > jkh@time-> cvs release -d zip > You have [0] altered files in this repository. > Are you sure you want to release (and delete) module `zip': y > jkh@time-> cvs co -P zip > cvs checkout: Updating zip > U zip/Makefile > cvs checkout: Updating zip/files > U zip/files/md5 > cvs checkout: Updating zip/patches > cvs checkout: Updating zip/pkg > U zip/pkg/COMMENT > U zip/pkg/DESCR > U zip/pkg/PLIST > jkh@time-> ls zip/patches > ls: zip/patches: No such file or directory > > Jordan