Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 May 2010 13:27:55 +0000 (UTC)
From:      Rafal Jaworowski <raj@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r208536 - head/gnu/usr.bin/dtc
Message-ID:  <201005251327.o4PDRt7Q035485@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: raj
Date: Tue May 25 13:27:55 2010
New Revision: 208536
URL: http://svn.freebsd.org/changeset/base/208536

Log:
  Correct dtc version header autogen location.
  
  While there unify brackets usage.

Modified:
  head/gnu/usr.bin/dtc/Makefile

Modified: head/gnu/usr.bin/dtc/Makefile
==============================================================================
--- head/gnu/usr.bin/dtc/Makefile	Tue May 25 10:15:30 2010	(r208535)
+++ head/gnu/usr.bin/dtc/Makefile	Tue May 25 13:27:55 2010	(r208536)
@@ -11,18 +11,18 @@ PROG=	dtc
 SRCS=	dtc.c checks.c fstree.c livetree.c treesource.c data.c \
 	flattree.c srcpos.c util.c \
 	fdt.c fdt_ro.c fdt_rw.c fdt_strerror.c \
-	fdt_sw.c fdt_wip.c $(DTCDIR)/version_gen.h
+	fdt_sw.c fdt_wip.c ${DTCVERSIONFILE}
 
 CFLAGS = -Wall -g -Os -fPIC -Wpointer-arith -Wcast-qual
 CFLAGS+= -I. -I${.CURDIR} -I${DTCDIR} -I${LIBFDTDIR}
 
-VERSIONMAJ!= awk '/^VERSION =/ { print $$3 }' $(DTCDIR)/Makefile
-VERSIONMIN!= awk '/^PATCHLEVEL =/ { print $$3 }' $(DTCDIR)/Makefile
-VERSIONSUB!= awk '/^SUBLEVEL =/ { print $$3 }' $(DTCDIR)/Makefile
-VERSIONEXTRA!= $(DTCDIR)/scripts/setlocalversion
+VERSIONMAJ!= awk '/^VERSION =/ { print $$3 }' ${DTCDIR}/Makefile
+VERSIONMIN!= awk '/^PATCHLEVEL =/ { print $$3 }' ${DTCDIR}/Makefile
+VERSIONSUB!= awk '/^SUBLEVEL =/ { print $$3 }' ${DTCDIR}/Makefile
+VERSIONEXTRA=
 
 DTCVERSION:=	${VERSIONMAJ}.${VERSIONMIN}.${VERSIONSUB}${VERSIONEXTRA}
-DTCVERSIONFILE:=	$(DTCDIR)/version_gen.h
+DTCVERSIONFILE:=	version_gen.h
 
 MAN=
 
@@ -34,18 +34,18 @@ OBJS+= dtc-parser.tab.o dtc-lexer.lex.o
 CLEANFILES+= dtc-parser.tab.o dtc-lexer.lex.o dtc-parser.tab.c \
 		dtc-parser.tab.h dtc-lexer.lex.c ${DTCVERSIONFILE}
 
-$(DTCVERSIONFILE):
+${DTCVERSIONFILE}:
 	@echo '#define DTC_VERSION "DTC ${DTCVERSION}"' > ${DTCVERSIONFILE}
 
 dtc-parser.tab.o:	dtc-parser.tab.c dtc-parser.tab.h
 dtc-lexer.lex.o:	dtc-lexer.lex.c dtc-parser.tab.h
 
 dtc-parser.tab.c:	dtc-parser.y
-	$(BISON) -o$@ -d $(DTCDIR)/dtc-parser.y
+	${BISON} -o$@ -d ${DTCDIR}/dtc-parser.y
 
 dtc-parser.tab.h:	dtc-parser.tab.c
 
 dtc-lexer.lex.c: dtc-lexer.l
-	$(LEX) -o$@ $(DTCDIR)/dtc-lexer.l
+	${LEX} -o$@ ${DTCDIR}/dtc-lexer.l
 
 .include <bsd.prog.mk>



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