On Wed, Sep 02, 2015 at 06:20:50PM -0700, Luis R. Rodriguez wrote: > +VERSION?=$(shell MAKE_COCCI_RELEASE="y" ./version.sh)
To be clear usage of FOO ?= bar is equivalent to using: ifeq ($(origin FOO), undefined) FOO = bar endif So once the user has run ./configure the right version will be set. https://www.gnu.org/software/make/manual/html_node/Flavors.html#Flavors Luis _______________________________________________ Cocci mailing list [email protected] https://systeme.lip6.fr/mailman/listinfo/cocci
