Commit 2dc51b7c authored by Thomas De Schampheleire's avatar Thomas De Schampheleire Committed by Thomas Petazzoni
Browse files

check-deprecated-variable: move from pkg-generic.mk to pkg-utils.mk

parent 6a25cec3
Loading
Loading
Loading
Loading
+0 −15
Original line number Diff line number Diff line
@@ -263,21 +263,6 @@ be selected at a time. Please fix your configuration)
endif
endef

################################################################################
# check-deprecated-variable -- throw an error on deprecated variables
#
# argument 1 is the deprecated variable
# argument 2 is the new variable to use
#
# example:
#   $(eval $(call check-deprecated-variable,FOO_MAKE_OPT,FOO_MAKE_OPTS))
################################################################################
define check-deprecated-variable
ifneq ($$(origin $(1)),undefined)
$$(error Package error: use $(2) instead of $(1). Please fix your .mk file)
endif
endef

################################################################################
# inner-generic-package -- generates the make targets needed to build a
# generic package
+9 −0
Original line number Diff line number Diff line
@@ -88,6 +88,15 @@ define sep

endef

# check-deprecated-variable -- throw an error on deprecated variables
# example:
#   $(eval $(call check-deprecated-variable,FOO_MAKE_OPT,FOO_MAKE_OPTS))
define check-deprecated-variable # (deprecated var, new var)
ifneq ($$(origin $(1)),undefined)
$$(error Package error: use $(2) instead of $(1). Please fix your .mk file)
endif
endef

#
# legal-info helper functions
#