From owner-freebsd-hackers Wed Jul 19 16:45:20 1995 Return-Path: hackers-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.11/8.6.6) id QAA16661 for hackers-outgoing; Wed, 19 Jul 1995 16:45:20 -0700 Received: from forgery.CS.Berkeley.EDU (forgery.CS.Berkeley.EDU [128.32.33.75]) by freefall.cdrom.com (8.6.11/8.6.6) with ESMTP id QAA16655 for ; Wed, 19 Jul 1995 16:45:19 -0700 Received: (from asami@localhost) by forgery.CS.Berkeley.EDU (8.6.11/8.6.9) id QAA01914; Wed, 19 Jul 1995 16:45:17 -0700 Date: Wed, 19 Jul 1995 16:45:17 -0700 Message-Id: <199507192345.QAA01914@forgery.CS.Berkeley.EDU> To: hackers@freebsd.org Subject: Strange entries in /usr/src/Makefile From: asami@cs.berkeley.edu (Satoshi Asami) Sender: hackers-owner@freebsd.org Precedence: bulk It was pointed out to me that there are some strange-looking lines in /usr/src/Makefile: ===== # These are last, since it is nice to at least get the base system # rebuilt before you do them. .if defined(MAKE_LOCAL) & exists(local) & exists(local/Makefile) SUBDIR+= local .endif .if defined(MAKE_PORTS) & exists(ports) & exists(ports/Makefile) SUBDIR+= ports .endif ===== What are these? I am not aware of /usr/src/local or /usr/src/ports ever existing on our system. The ports stuff should be in /usr/ports, and has never been intended to be built as part of "make world". The "local" stuff are, well, up to the site administrator, but /usr/local is typically populated by third-party software (including many from the ports tree), so I don't know why it's here either. Will the world be obliterated in a violent volcanic eruption if I delete these lines? Satoshi