commit 01f07c49d05ea96bb44614a92fa53cc62327bc8c from: Stefan Sperling date: Sun Aug 17 10:34:15 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 - f4dfd849913b7ada5a3f441160a74efb8fc9978f commit + 01f07c49d05ea96bb44614a92fa53cc62327bc8c 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