Revert "add cache file option to autoconf executor by default (if cflags and ldflags match default)"

This reverts commit abe27598de.
This commit is contained in:
DubbleClick
2025-07-02 12:56:11 +07:00
parent 6f68d7b7f1
commit a5a020eef1
2 changed files with 9 additions and 9 deletions

View File

@@ -117,11 +117,6 @@ class UnixShell
return trim($str);
}
public function getEnv(): array
{
return $this->env;
}
private function getExecString(string $cmd): string
{
logger()->debug('Executed at: ' . debug_backtrace()[0]['file'] . ':' . debug_backtrace()[0]['line']);
@@ -134,4 +129,9 @@ class UnixShell
}
return $cmd;
}
public function getEnv(): array
{
return $this->env;
}
}