From owner-svn-ports-all@freebsd.org Sat Nov 19 16:42:09 2016 Return-Path: Delivered-To: svn-ports-all@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 DB217C4A00B; Sat, 19 Nov 2016 16:42:09 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 AAE8B11D1; Sat, 19 Nov 2016 16:42:09 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAJGg8Em054887; Sat, 19 Nov 2016 16:42:08 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAJGg8T2054886; Sat, 19 Nov 2016 16:42:08 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201611191642.uAJGg8T2054886@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sat, 19 Nov 2016 16:42:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426386 - head/sysutils/cmdwatch/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Nov 2016 16:42:10 -0000 Author: marino Date: Sat Nov 19 16:42:08 2016 New Revision: 426386 URL: https://svnweb.freebsd.org/changeset/ports/426386 Log: sysutils/cmdwatch: honor CFLAGS Approved by: general blanket (FLAGS must be honored) Modified: head/sysutils/cmdwatch/files/patch-Makefile Modified: head/sysutils/cmdwatch/files/patch-Makefile ============================================================================== --- head/sysutils/cmdwatch/files/patch-Makefile Sat Nov 19 16:36:54 2016 (r426385) +++ head/sysutils/cmdwatch/files/patch-Makefile Sat Nov 19 16:42:08 2016 (r426386) @@ -5,11 +5,27 @@ all : startup $(OBJS) - @$(CC) -o cmdwatch $(OBJS) -lcurses -+ @$(CC) -o cmdwatch $(OBJS) $(LDFLAGS) -lncurses ++ @$(CC) $(CFLAGS) -o cmdwatch $(OBJS) $(LDFLAGS) -lncurses @strip cmdwatch @echo " done." -@@ -26,9 +26,9 @@ clean : +@@ -13,22 +13,22 @@ startup : + @echo -n "Making cmdwatch..." + + getopt.o : getopt.c +- @$(CC) -c getopt.c ++ @$(CC) $(CFLAGS) -c getopt.c + + getopt1.o : getopt1.c +- @$(CC) -c getopt1.c ++ @$(CC) $(CFLAGS) -c getopt1.c + + cmdwatch.o : cmdwatch.c +- @$(CC) -c cmdwatch.c ++ @$(CC) $(CFLAGS) -c cmdwatch.c + + clean : + @echo "Making clean..." @rm -f *.o cmdwatch install : all