On 08/01/2013 01:45 PM, Graeme Gregory wrote:
On 01/08/13 20:43, Al Stone wrote:
On 08/01/2013 04:13 AM, Graeme Gregory wrote:
Make all the variable references use consistent bracketing.
Signed-off-by: Graeme Gregory graeme.gregory@linaro.org
Makefile | 12 ++++++------ platforms/Makefile | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/Makefile b/Makefile index 38491c5..e6167a4 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ MABDIR := tools/mab/ PLATDIR := platforms/
-%.acpi : ${MABDIR}/mab
- make MAB=${CURDIR}/${MABDIR}/mab -C $(PLATDIR) $@
+%.acpi : $(MABDIR)/mab
- make MAB=$(CURDIR)/$(MABDIR)/mab -C $(PLATDIR) $@
-${MABDIR}/mab :
- make -C ${MABDIR}
+$(MABDIR)/mab :
make -C $(MABDIR)
clean :
- make -C ${MABDIR} clean
- make -C ${PLATDIR} clean
- make -C $(MABDIR) clean
- make -C $(PLATDIR) clean
diff --git a/platforms/Makefile b/platforms/Makefile index 9e0f2ab..61e2133 100644 --- a/platforms/Makefile +++ b/platforms/Makefile @@ -1,5 +1,5 @@ %.acpi : FORCE
- ${MAB} -d $@ -i $(basename $@).manifest -o $@
$(MAB) -d $@ -i $(basename $@).manifest -o $@
clean : -rm *.acpi/*.aml
D'oh. Nice catch. And bad habit on my part :(.
Acked-by: Al Stone al.stone@linaro.org
It wasn't you, remade most of those lines by hand, I just tend to forget Im not programming bash on regular occasions :-)
LOL -- I assumed it was me 'cause I tend to do this all the time, too :).