From owner-freebsd-current@FreeBSD.ORG Thu Dec 16 04:18:45 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 344A616A4CE for ; Thu, 16 Dec 2004 04:18:45 +0000 (GMT) Received: from pi.codefab.com (pi.codefab.com [199.103.21.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CBB243D2F for ; Thu, 16 Dec 2004 04:18:44 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from [192.168.1.3] (pool-68-160-207-47.ny325.east.verizon.net [68.160.207.47]) by pi.codefab.com (8.12.11/8.12.11) with ESMTP id iBG4IbfW066798 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 15 Dec 2004 23:18:40 -0500 (EST) Message-ID: <41C10C99.10600@mac.com> Date: Wed, 15 Dec 2004 23:18:33 -0500 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.3) Gecko/20040910 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD-Current X-Enigmail-Version: 0.89.5.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=1.8 required=5.5 tests=RCVD_IN_NJABL_DUL, RCVD_IN_SORBS_DUL autolearn=disabled version=3.0.1 X-Spam-Level: * X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on pi.codefab.com Subject: make vs. gmake in 6-CURRENT... X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2004 04:18:45 -0000 Hi, all-- Apparently something has changed with BSD make in -CURRENT, causing the following problem to appear in a port I maintain: [ ... ] ===> Installing for dvd+rw-tools-5.21.4.10.8 ===> dvd+rw-tools-5.21.4.10.8 depends on file: /usr/local/bin/mkisofs - found ===> Generating temporary packing list install -s -o root -g wheel -m 555 /usr/ports/sysutils/dvd+rw-tools/work/dvd+rw-tools-5.21.4.10.8/ growisofs /usr/local/bin install: /usr/ports/sysutils/dvd+rw-tools/work/dvd+rw-tools-5.21.4.10.8/ growisofs: No such file or directory *** Error code 71 Note the space in ".../dvd+rw-tools-5.21.4.10.8/ growisofs", which command was generated by the following Makefile section: do-install: .for i in ${BIN_FILES} ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${PREFIX}/bin .endfor Since I don't have a system running 6, I was fortunate to have someone look into the issue and fix the port by having it use gmake instead. (thanks BTW) However, it seems like that space-stuffing when generating paths would break lots of other things. Anyway, I wanted to bring up the issue here and ask whether this change to make's behavior is expected or whether it should be considered a bug...? Cheers, -- -Chuck