From owner-freebsd-bugs@FreeBSD.ORG Sun Jun 15 08:01:45 2014 Return-Path: Delivered-To: freebsd-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5973C4DF for ; Sun, 15 Jun 2014 08:01:45 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 27EE92C71 for ; Sun, 15 Jun 2014 08:01:45 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.8/8.14.8) with ESMTP id s5F81jNL067416 for ; Sun, 15 Jun 2014 09:01:45 +0100 (BST) (envelope-from bz-noreply@freebsd.org) From: bz-noreply@freebsd.org To: freebsd-bugs@FreeBSD.org Subject: [Bug 191055] New: make install with bsd.progs.mk installs FILES multiple times if PROGS is specified Date: Sun, 15 Jun 2014 08:01:45 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 11.0-CURRENT X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: yaneurabeya@gmail.com X-Bugzilla-Status: Needs Triage X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jun 2014 08:01:45 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191055 Bug ID: 191055 Summary: make install with bsd.progs.mk installs FILES multiple times if PROGS is specified Product: Base System Version: 11.0-CURRENT Hardware: Any OS: Any Status: Needs Triage Severity: Affects Only Me Priority: --- Component: misc Assignee: freebsd-bugs@FreeBSD.org Reporter: yaneurabeya@gmail.com If I specify PROGS and FILES/SCRIPTS, I've noticed that it installs files multiple times. It should only try to install FILES/SCRIPTS once. I've provided an example below: % uname -a FreeBSD isilon-fuji-current.local 11.0-CURRENT FreeBSD 11.0-CURRENT #5 0d2be6b(isilon-atf): Sun Jun 8 21:34:32 PDT 2014 root@fuji-current.local:/usr/obj/usr/src/sys/FUJI i386 % cat * # Makefile FILESDIR=/tmp/share FILES= c BINDIR= /tmp/bin PROGS= a b MAN= .include /* a.c */ #include int main(void) { printf("hello world!\n"); return (0); } /* b.c */ #include int main(void) { printf("hello world!\n"); return (0); } /* c */ This directory contains a simple C app that says, "hello world!" % make install install -o root -g wheel -m 444 c /tmp/share (cd /root/make_install_installs_files_multiple_times && make -f Makefile _RECURSING_PROGS= SUBDIR= PROG=a install) install -s -o root -g wheel -m 555 a /tmp/bin/a install -o root -g wheel -m 444 c /tmp/share (cd /root/make_install_installs_files_multiple_times && make -f Makefile _RECURSING_PROGS= SUBDIR= PROG=b install) install -s -o root -g wheel -m 555 b /tmp/bin/b install -o root -g wheel -m 444 c /tmp/share -- You are receiving this mail because: You are the assignee for the bug.