From 554d848a4b2ee9fbf512fdeb10b7a9d51f05ede8 Mon Sep 17 00:00:00 2001 From: Jason Self Date: Sun, 23 Oct 2016 13:32:42 -0700 Subject: [PATCH] The include path should be a single + so as to not append to existing search paths but to instead replace the current search path with the specified one. This avoid accidentally including code from other locations that may have the same name. --- README | 2 +- build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index d786451..86774f8 100644 --- a/README +++ b/README @@ -22,7 +22,7 @@ https://jxself.org/git/?p=inform.git Once the compiler has been compiled and is ready for use return to this directory and run: - inform ++include_path=lib grue-hunter + inform +include_path=lib grue-hunter Or you can run the included build.sh script which does the same thing, assuming that the inform compiler is included in your PATH. diff --git a/build.sh b/build.sh index 6a0aa2c..a3a65cc 100755 --- a/build.sh +++ b/build.sh @@ -15,4 +15,4 @@ # License along with Grue Hunter. If not, see # . -inform ++include_path=lib grue-hunter +inform +include_path=lib grue-hunter \ No newline at end of file -- 2.31.1