diff options
author | 2018-01-25 10:32:52 -0500 | |
---|---|---|
committer | 2018-01-25 10:32:52 -0500 | |
commit | c5a0b961f5f955b5c7924fbbb8c453edd6ecd699 (patch) | |
tree | 17da04402e7e0a9837b888833192f13fc59d68ec | |
parent | 22fb06517d58123145ab5b6d36614c2528e218c9 (diff) | |
download | textadept-c5a0b961f5f955b5c7924fbbb8c453edd6ecd699.tar.gz textadept-c5a0b961f5f955b5c7924fbbb8c453edd6ecd699.zip |
Fixed warnings/errors when running LuaJIT's "clean" rule with clang, not gcc.
-rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 2f103f82..4fa2c209 100644 --- a/src/Makefile +++ b/src/Makefile @@ -297,7 +297,7 @@ uninstall: # Clean. clean: - $(MAKE) -C luajit clean + $(MAKE) CC=$(CC) -C luajit clean rm -f *.o ../textadept* # Documentation. |