diff options
author | Sam James <sam@gentoo.org> | 2021-03-27 21:20:59 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-11 20:59:51 +0000 |
commit | 6d4683a9452f8ed703d7901eedce9dd0a872c64e (patch) | |
tree | b93afaa36c575f4de8f638d467eedfe4337fd8c9 | |
parent | autotools.eclass: convert phase test to EBUILD_PHASE_FUNC (diff) | |
download | gentoo-6d4683a9452f8ed703d7901eedce9dd0a872c64e.tar.gz gentoo-6d4683a9452f8ed703d7901eedce9dd0a872c64e.tar.bz2 gentoo-6d4683a9452f8ed703d7901eedce9dd0a872c64e.zip |
autotools.eclass: explicitly blank and mark variables as @DEFAULT_UNSET
Provides consistency with existing style.
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | eclass/autotools.eclass | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index e24a07e79454..3090da5a01f4 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -145,12 +145,14 @@ unset _automake_atom _autoconf_atom # @DESCRIPTION: # Additional options to pass to automake during # eautoreconf call. +: ${AM_OPTS:=} # @ECLASS-VARIABLE: AT_NOEAUTOHEADER # @DEFAULT_UNSET # @DESCRIPTION: # Don't run eautoheader command if set to 'yes'; only used to work around # packages that don't want their headers being modified. +: ${AT_NOEAUTOHEADER:=} # @ECLASS-VARIABLE: AT_NOEAUTOMAKE # @DEFAULT_UNSET @@ -158,6 +160,7 @@ unset _automake_atom _autoconf_atom # Don't run eautomake command if set to 'yes'; only used to workaround # broken packages. Generally you should, instead, fix the package to # not call AM_INIT_AUTOMAKE if it doesn't actually use automake. +: ${AT_NOEAUTOMAKE:=} # @ECLASS-VARIABLE: AT_NOELIBTOOLIZE # @DEFAULT_UNSET @@ -165,6 +168,7 @@ unset _automake_atom _autoconf_atom # Don't run elibtoolize command if set to 'yes', # useful when elibtoolize needs to be ran with # particular options +: ${AT_NOELIBTOOLIZE:=} # @ECLASS-VARIABLE: AT_M4DIR # @DEFAULT_UNSET |