]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commit
package/Makefile.in: export O= to post-build/image scripts for out-of-tree builds
authorPeter Korsgaard <peter@korsgaard.com>
Fri, 14 Jul 2017 13:04:17 +0000 (15:04 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 15 Jul 2017 08:10:56 +0000 (10:10 +0200)
commit0e99bef2fbffd521f457d199c76e42534cc8d419
treee1af52d18942c5feab352415e0d0e3aa50cfdd09
parenta3da7980eb4744248b0f83e07cfdb42ae82ccf6f
package/Makefile.in: export O= to post-build/image scripts for out-of-tree builds

Sometimes it can be interesting to call back into buildroot from a
post-build/image script (E.G. make printvars or similar). For this to work
correctly with out-of-tree builds we need to pass O= to make, but this is
currently not available in the environment of post-build/image scripts.

In concept, O could be derrived from BUILD_DIR (E.G. by stripping /build),
but directly exporting O is cleaner.

O= cannot be exported globally as it interferes with various build systems,
so instead add it to EXTRA_ENV.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/Makefile.in