]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
daemon/build: removed bytecode compilation, as the result is version-specific
authorMarek Vavruša <marek.vavrusa@nic.cz>
Wed, 8 Apr 2015 14:45:49 +0000 (16:45 +0200)
committerMarek Vavruša <marek.vavrusa@nic.cz>
Wed, 8 Apr 2015 14:45:49 +0000 (16:45 +0200)
config.mk
daemon/daemon.mk

index 78d1340d8397279d9c8aba10fab36c7124eb932f..004fced6a3b3d5db5217fe264ff9692bfdc1503e 100644 (file)
--- a/config.mk
+++ b/config.mk
@@ -17,6 +17,5 @@ CFLAGS  += -DPACKAGE_VERSION="\"$(MAJOR).$(MINOR)\"" -DPREFIX="\"$(PREFIX)\"" -D
 RM     := rm -f
 LN      := ln -s
 XXD     ?= xxd
-LUAC    ?= luac
 INSTALL := install
 PYTHON  := python
index a398873114d66ccc3a6df3b7f2decb22c0f78e76..677d23d1575abeb54f522168f22c593fa4a1d0b5 100644 (file)
@@ -10,9 +10,7 @@ kresolved_SOURCES := \
 # Embed resources
 daemon/engine.o: daemon/lua/sandbox.inc daemon/lua/config.inc
 %.inc: %.lua
-       @$(call quiet,LUAC,$<) -o $<.out $<
-       @$(call quiet,XXD,$<) -i - < $<.out > $@
-       @$(RM) $<.out
+       @$(call quiet,XXD,$<) -i - < $< > $@
 
 # Dependencies
 kresolved_DEPEND := $(libkresolve)