From owner-svn-ports-head@FreeBSD.ORG Wed Jun 3 18:41:01 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CE20FB83; Wed, 3 Jun 2015 18:41:01 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id BBA9F160C; Wed, 3 Jun 2015 18:41:01 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t53If1Jm011446; Wed, 3 Jun 2015 18:41:01 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t53If1Bn011445; Wed, 3 Jun 2015 18:41:01 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201506031841.t53If1Bn011445@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 3 Jun 2015 18:41:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388468 - head/textproc/heirloom-doctools X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 03 Jun 2015 18:41:01 -0000 Author: bapt Date: Wed Jun 3 18:41:00 2015 New Revision: 388468 URL: https://svnweb.freebsd.org/changeset/ports/388468 Log: Fix build if INSTALL is defined with multiple arguments Reported by: kib Modified: head/textproc/heirloom-doctools/Makefile Modified: head/textproc/heirloom-doctools/Makefile ============================================================================== --- head/textproc/heirloom-doctools/Makefile Wed Jun 3 18:40:55 2015 (r388467) +++ head/textproc/heirloom-doctools/Makefile Wed Jun 3 18:41:00 2015 (r388468) @@ -17,7 +17,7 @@ GH_ACCOUNT= n-t-roff USES= gmake ALL_TARGET= #empty -MAKE_ARGS+= INSTALL=${INSTALL} \ +MAKE_ARGS+= INSTALL="${INSTALL}" \ BINDIR=${BINDIR} \ LIBDIR=${LIBDIR} \ PUBDIR=${PUBDIR} \