Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Jun 2015 09:47:12 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r389028 - in head/devel/android-tools-fastboot: . files
Message-ID:  <201506100947.t5A9lC45099263@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Wed Jun 10 09:47:12 2015
New Revision: 389028
URL: https://svnweb.freebsd.org/changeset/ports/389028

Log:
  devel/android-tools-fastboot: inflict minor style
  
  o Escape MAKE_ENV paths for consistency with my other ports
  o -I. == -I${.OBJDIR} while ${.OBJDIR} != ${.CURDIR} after |make obj|

Modified:
  head/devel/android-tools-fastboot/Makefile   (contents, props changed)
  head/devel/android-tools-fastboot/files/Makefile   (contents, props changed)

Modified: head/devel/android-tools-fastboot/Makefile
==============================================================================
--- head/devel/android-tools-fastboot/Makefile	Wed Jun 10 09:26:08 2015	(r389027)
+++ head/devel/android-tools-fastboot/Makefile	Wed Jun 10 09:47:12 2015	(r389028)
@@ -18,7 +18,7 @@ GH_TAGNAME=	${GH_ACCOUNT}-${DISTVERSION}
 USES=		uidfix
 WRKSRC_SUBDIR=	fastboot
 MAKEFILE=	${FILESDIR}/Makefile
-MAKE_ENV=	FILESDIR=${FILESDIR} BINDIR=${PREFIX}/bin
+MAKE_ENV=	FILESDIR="${FILESDIR}" BINDIR="${PREFIX}/bin"
 PLIST_FILES=	bin/fastboot
 
 .include <bsd.port.mk>

Modified: head/devel/android-tools-fastboot/files/Makefile
==============================================================================
--- head/devel/android-tools-fastboot/files/Makefile	Wed Jun 10 09:26:08 2015	(r389027)
+++ head/devel/android-tools-fastboot/files/Makefile	Wed Jun 10 09:47:12 2015	(r389028)
@@ -17,9 +17,9 @@ SRCS+=	util_freebsd.c
 SRCS+=	centraldir.c
 SRCS+=	zipfile.c
 
-CFLAGS+=-I.
-CFLAGS+=-I../include
-CFLAGS+=-I../mkbootimg
+CFLAGS+=-I${.CURDIR}
+CFLAGS+=-I${.CURDIR}/../include
+CFLAGS+=-I${.CURDIR}/../mkbootimg
 
 LDADD+=	-lusb -lz
 DPADD+=	${LIBUSB} ${LIBZ}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506100947.t5A9lC45099263>