scc

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

commit 45a5271ae24937f5d96724db3d3da898a56e106e
parent 3979c0fcf50f1ac9df42a871f8627b0fec59ef0d
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