From owner-freebsd-hackers Wed Jul 19 17:31:12 1995 Return-Path: hackers-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.11/8.6.6) id RAA17602 for hackers-outgoing; Wed, 19 Jul 1995 17:31:12 -0700 Received: from time.cdrom.com (time.cdrom.com [192.216.222.226]) by freefall.cdrom.com (8.6.11/8.6.6) with ESMTP id RAA17596 ; Wed, 19 Jul 1995 17:31:10 -0700 Received: from localhost (localhost [127.0.0.1]) by time.cdrom.com (8.6.11/8.6.9) with SMTP id RAA20367; Wed, 19 Jul 1995 17:30:31 -0700 To: asami@cs.berkeley.edu (Satoshi Asami) cc: hackers@freebsd.org Subject: Re: Strange entries in /usr/src/Makefile In-reply-to: Your message of "Wed, 19 Jul 1995 16:45:17 PDT." <199507192345.QAA01914@forgery.CS.Berkeley.EDU> Date: Wed, 19 Jul 1995 17:30:31 -0700 Message-ID: <20363.806200231@time.cdrom.com> From: "Jordan K. Hubbard" Sender: hackers-owner@freebsd.org Precedence: bulk > Will the world be obliterated in a violent volcanic eruption if I > delete these lines? These were done on behalf of Julian Stacey, who wanted some sort of tighter integration in his "really build the world" makes. Myself, I think it's cruft and it should go. If you want to build the world, a small shell script does fine: % cat > beat_my_system #!/bin/sh date cd /usr/src echo "** Making the world in less than 7 days" make world echo "** Done with the world, resting.." sleep 1 echo "Ok, that's enough. Moving on to ports." cd /usr/ports make -k clean all install echo "My god! We're still here!" exit 0 ^D % chmod +x beat_my_system % ./beat_my_system >& /var/log/beating.log & Jordan