aboutsummaryrefslogtreecommitdiffstats
path: root/.vars.rc.do
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2021-08-11 01:25:59 +0100
committerTomasz Kramkowski <tk@the-tk.com>2021-08-11 01:29:23 +0100
commitd461b029213d366e0aab0f305b3f92b8ecd8d2e8 (patch)
tree396651ae8fb4db6ead0d9cc303c6559ff9353662 /.vars.rc.do
parent22f571e3f00e9e66821b67f41ed764b474a98884 (diff)
downloadpack-d461b029213d366e0aab0f305b3f92b8ecd8d2e8.tar.gz
pack-d461b029213d366e0aab0f305b3f92b8ecd8d2e8.tar.xz
pack-d461b029213d366e0aab0f305b3f92b8ecd8d2e8.zip
make [HT]CC full paths for redo-ifchange in .tool
This should force rebuilding targets which depend on tools which have changed in the filesystem and prevent envrionment changes from causing build changes. But this should be documented. Ideally a redo with a redo-always (or more aptly named redo-ifredo) would mark an env target as needing redoing every time you run redo on a deptree which includes it and this would in turn cause rebuilding of things which rely on the environment (like tools which run from the path).
Diffstat (limited to '.vars.rc.do')
-rwxr-xr-x.vars.rc.do2
1 files changed, 2 insertions, 0 deletions
diff --git a/.vars.rc.do b/.vars.rc.do
index 3e0d1a1..3a5d26d 100755
--- a/.vars.rc.do
+++ b/.vars.rc.do
@@ -63,7 +63,9 @@ if [[ $werror ]]; then
fi
if [[ ! $TCC ]]; then TCC=$CC; fi
+TCC=$(command -v "$TCC")
if [[ ! $HCC ]]; then HCC=$CC; fi
+HCC=$(command -v "$HCC")
for p in T H; do
for v in CFLAGS CPPFLAGS LDFLAGS LDLIBS; do
eval "$p$v+=(\"\${$v[@]}\")"