From: Avery Pennarun Date: Tue, 5 Jan 2010 18:02:16 +0000 (-0500) Subject: Makefile: avoid using backquotes. X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=822545a5437f243dae1fba2bac8557df5d722039;p=packages%2Fb%2Fbup.git Makefile: avoid using backquotes. --- diff --git a/Makefile b/Makefile index 8351d9e..64b1ecd 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ -CFLAGS=-Wall -g -O2 -Werror `python2.5-config --includes` -g -fPIC +PYINCLUDE:=$(shell python2.5-config --includes) +CFLAGS=-Wall -g -O2 -Werror $(PYINCLUDE) -g -fPIC default: all