From owner-freebsd-current@freebsd.org Tue Dec 15 17:00:40 2015 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0B289A48944 for ; Tue, 15 Dec 2015 17:00:40 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pa0-x231.google.com (mail-pa0-x231.google.com [IPv6:2607:f8b0:400e:c03::231]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D617C1220; Tue, 15 Dec 2015 17:00:39 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by mail-pa0-x231.google.com with SMTP id ur14so7711920pab.0; Tue, 15 Dec 2015 09:00:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=content-type:mime-version:subject:from:in-reply-to:date:cc :content-transfer-encoding:message-id:references:to; bh=Xh3OfFuYzrCJEsUl83GKr+aJwlPLBhCtIv0kvM61yBU=; b=wwR7Qvas6jgASAFl6V8/avzz0QJh/y+o8bjVWmuvRqkO5ul9rPsQw5yqWOq5Nxefyv IhAQfzRUee+EcSpxxUyN9auDDF074nidL6szWfmZ6McIEpxLg2/mbt66w2jlhr/Se9+y C7GQVqKdkl+NwBXo0uf2ypqXKu2dzpmYD8x7E4HeCwu+XS/aumuWPjM8DeZMSZppk2io K4Gn2L82hBm+yD6E4u6TOo4RGL8JkBIJaRAi4jEjp1BVsQ2ivHcwYzdSDACshSvVdngj vCIDhtTMxsLufSIxrZrHhVHhnzSSDyqtS4kr6aTCFe4WqT09IkDfKHx/2UPBMlq7O8UZ Lkaw== X-Received: by 10.66.220.196 with SMTP id py4mr34346695pac.135.1450198839463; Tue, 15 Dec 2015 09:00:39 -0800 (PST) Received: from [192.168.20.11] (c-24-16-212-205.hsd1.wa.comcast.net. [24.16.212.205]) by smtp.gmail.com with ESMTPSA id 68sm3391683pfp.62.2015.12.15.09.00.37 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 15 Dec 2015 09:00:37 -0800 (PST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (1.0) Subject: Re: make .SUFFIXES bug? From: Garrett Cooper X-Mailer: iPhone Mail (13C75) In-Reply-To: <958008149.499994.1450191701294.JavaMail.ngmail@webmail08.arcor-online.net> Date: Tue, 15 Dec 2015 09:00:36 -0800 Cc: freebsd-current@freebsd.org, sjg@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: <843488FE-1892-40BD-B909-1D65B7B9DEBA@gmail.com> References: <958008149.499994.1450191701294.JavaMail.ngmail@webmail08.arcor-online.net> To: Carsten Kunze X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 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: Tue, 15 Dec 2015 17:00:40 -0000 > On Dec 15, 2015, at 07:01, Carsten Kunze wrote: >=20 > Hello, >=20 > current groff doesn't build on FreeBSD. I had noticed the same issue some= months ago on NetBSD and cross checked on FreeBSD and it had worked on Free= BSD. There must have somethig changed since then. How to reproduce: >=20 > When there is a file "test.1.man" and a makefile: >=20 > .SUFFIXES: > .SUFFIXES: .roff .in .ps .mom .pdf .me .ms .ps .html .txt .texi .dvi .pdf .= xhtml .man .c .cpp .log .o .obj .sed .sin .test .test$(EXEEXT) .trs .ypp >=20 > .man: > @echo Making $@ from $< > rm -f $@ > @LC_ALL=3DC \ > sed -e "s|foo|bar|g" \ > $< >$@ >=20 > "make test.1" results in "make: don't know how to make test.1. Stop". >=20 > When ".man" is put to the start of the list it works. It also works when t= he first .SUFFIXES line is removed. >=20 > The answer from NetBSD is that this is very likely a bug in make. May thi= s also be the case for FreeBSD? Hi Carsten, Probably since both use bmake... (I saw you started the other thread on tech= -userlevel@netbsd.org). Simon maintains bmake. I've CCed him for visibility. Thanks! -NGie=