From owner-svn-src-all@FreeBSD.ORG Sun Oct 23 12:58:03 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20889106566C; Sun, 23 Oct 2011 12:58:03 +0000 (UTC) (envelope-from ray@ddteam.net) Received: from mail-ey0-f182.google.com (mail-ey0-f182.google.com [209.85.215.182]) by mx1.freebsd.org (Postfix) with ESMTP id 3226F8FC14; Sun, 23 Oct 2011 12:58:01 +0000 (UTC) Received: by eyd10 with SMTP id 10so6486056eyd.13 for ; Sun, 23 Oct 2011 05:58:01 -0700 (PDT) Received: by 10.14.6.9 with SMTP id 9mr2444005eem.247.1319373198527; Sun, 23 Oct 2011 05:33:18 -0700 (PDT) Received: from rnote.ddteam.net (143-168-133-95.pool.ukrtel.net. [95.133.168.143]) by mx.google.com with ESMTPS id v3sm37919420eej.7.2011.10.23.05.33.13 (version=SSLv3 cipher=OTHER); Sun, 23 Oct 2011 05:33:16 -0700 (PDT) Date: Sun, 23 Oct 2011 15:33:02 +0300 From: Aleksandr Rybalko To: Gabor Kovesdan Message-Id: <20111023153302.56645b59.ray@ddteam.net> In-Reply-To: <201110112227.p9BMROEX034985@svn.freebsd.org> References: <201110112227.p9BMROEX034985@svn.freebsd.org> X-Mailer: Sylpheed 3.1.0 (GTK+ 2.24.5; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r226271 - in head/usr.bin/grep: . regex X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Oct 2011 12:58:03 -0000 On Tue, 11 Oct 2011 22:27:24 +0000 (UTC) Gabor Kovesdan wrote: > Author: gabor > Date: Tue Oct 11 22:27:23 2011 > New Revision: 226271 > URL: http://svn.freebsd.org/changeset/base/226271 > > Log: > - Use getprogname() instead of __progname > - Allow disabling bzip2 support with WITHOUT_BZIP2 > - Fix handling patterns that start with a dot > - Remove superfluous semicolon > > Approved by: delphij (mentor) > > Modified: > head/usr.bin/grep/Makefile > head/usr.bin/grep/file.c > head/usr.bin/grep/grep.c > head/usr.bin/grep/regex/tre-fastmatch.c > Hi Gabor, attached path fix install with WITH_BSD_GREP=yes Index: Makefile =================================================================== --- Makefile (revision 226462) +++ Makefile (working copy) @@ -53,12 +53,14 @@ LDADD+= -lbz2 DPADD+= ${LIBBZ2} +.if ${MK_BSD_GREP} == "yes" LINKS+= ${BINDIR}/grep ${BINDIR}/bzgrep \ ${BINDIR}/grep ${BINDIR}/bzegrep \ ${BINDIR}/grep ${BINDIR}/bzfgrep MLINKS+= grep.1 bzgrep.1 \ grep.1 bzegrep.1 \ grep.1 bzfgrep.1 +.endif .else CFLAGS+= -DWITHOUT_BZIP2 .endif =8<================================8<===========================8<= Thank you for your big work! WBW -- Aleksandr Rybalko