From owner-freebsd-stable@FreeBSD.ORG Sat Mar 10 19:28:48 2007 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F19216A40E for ; Sat, 10 Mar 2007 19:28:48 +0000 (UTC) (envelope-from daniel.mouritsen@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.189]) by mx1.freebsd.org (Postfix) with ESMTP id C96C613C494 for ; Sat, 10 Mar 2007 19:28:47 +0000 (UTC) (envelope-from daniel.mouritsen@gmail.com) Received: by mu-out-0910.google.com with SMTP id g7so1481447muf for ; Sat, 10 Mar 2007 11:28:46 -0800 (PST) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=ZN590tPRgcXHq9ISWAcfkYwsEP06VOenycw9UG2qrY3UaymzNao0Z6z/N0cTnd6cEIhnqVzRvAanTa7mhzPATE5a1do7TYUXOujjmeWHl+sF1EZlAlIvVjiSx1vscDrIyWWGB8ecY6gqFMuswjFj/stiW3UcplTzwfPqmvmsFQM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=dKiuwHDIZYELxqrmSGTdSxGAk2gDgSsb/mmHVsN7T113me2PyGGPDnuIUJj2P5jJ02U6/T9PDh14DGUFIjmZLQayhtSEoZCrcb7LdCgwmfBE5Q4ZrRbAJxmUHeak069SDHZK8efherhVb2PiNzTMPSHn9e378bfpRfQ2dCZET+Y= Received: by 10.82.187.16 with SMTP id k16mr5484016buf.1173554925680; Sat, 10 Mar 2007 11:28:45 -0800 (PST) Received: by 10.82.191.20 with HTTP; Sat, 10 Mar 2007 11:28:45 -0800 (PST) Message-ID: Date: Sat, 10 Mar 2007 20:28:45 +0100 From: "Daniel Mouritsen" To: freebsd-stable@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Another newbie question, about makefile options X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Mar 2007 19:28:48 -0000 Hi, quick question.. When installing apache, i used the following make WITH_CATEGORY1_MODULES="yes" WITH_CATEGORY2_MODULES="yes" etc.. etc and "make install clean" which seemed to work fine and install everything I wanted.. but when instealling vim using the NO_GUI="yes" option, it wanted to install X when i did "make install clean" using make NO_GUI="yes" install clean made it install without the gui... So my question is, should i pass the makefile options only when running "make" to compile the program (that would make sence wouldnt it?) or should i use them everytime i run make as in both when doing "make" and "make install clean".