1Dpkg::Build::Env(3perl) libdpkg-perl Dpkg::Build::Env(3perl)
2
3
4
6 Dpkg::Build::Env - track build environment
7
9 The Dpkg::Build::Env module is used by dpkg-buildflags to track the
10 build environment variables being used and modified.
11
13 set($varname, $value)
14 Update the build environment variable $varname with value $value.
15 Record it as being accessed and modified.
16
17 get($varname)
18 Get the build environment variable $varname value. Record it as
19 being accessed.
20
21 has($varname)
22 Return a boolean indicating whether the environment variable
23 exists. Record it as being accessed.
24
25 @list = list_accessed()
26 Returns a list of all environment variables that have been
27 accessed.
28
29 @list = list_modified()
30 Returns a list of all environment variables that have been
31 modified.
32
34 Version 0.xx
35 This is a private module.
36
37
38
391.19.7 2020-07-27 Dpkg::Build::Env(3perl)