commit 1de7ce30d87af9b7e85d4393ff5f8106b5e7ff5b from: Stefan Sperling via: Thomas Adam date: Mon Aug 18 15:46:52 2025 UTC gotsysd regress: run make clean in the template directory, else build can fail Without make clean we would end up running a template binary built on the host system, which won't run in case libc.so is out sync between host and VM. commit - 4584117646613992902c00956c6c02e504bbcae1 commit + 1de7ce30d87af9b7e85d4393ff5f8106b5e7ff5b blob - ab9f8e028981ae8b39e96c7b16278cb912c60b83 blob + 0c50872c0b3e3f08b48fe93b8781d3cb676271df --- regress/gotsysd/build-got.sh +++ regress/gotsysd/build-got.sh @@ -8,7 +8,7 @@ cd ~/src/got # on already compiled files might be off. Clean out any build artifacts. # We cannot run the top-level clean target because some subdirs are missing, # most notably the regress directory. -for d in got* git* lib*; do +for d in got* git* lib* template; do if [ -d "${d}" ]; then make -s -C "${d}" clean > /dev/null fi