scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 2c1b957c0bd9ff6b3cdc02c5efae1f3f1a637c52
parent 687d599c2efa92c1d8347d610be102fcb9a97c18
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Thu, 19 Sep 2019 19:33:26 +0200

[test/as] Fix the PATH definition

After the directoy structure change, the old paths are not
valid anymore.

Diffstat:
Mtests/as/execute/Makefile | 6++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/tests/as/execute/Makefile b/tests/as/execute/Makefile @@ -1,12 +1,10 @@ .POSIX: - -PROJECTDIR=$$PWD/../../../ -ROOT=$(PROJECTDIR)/root +ROOT=../../../ all: tests tests: - @PATH=$(ROOT)/bin:$$PATH chktest.sh + @PATH=$(ROOT)/libexec/scc/:$(ROOT)/bin:$$PATH chktest.sh clean: rm -f test.log