From: Marek VavruĊĦa Date: Wed, 8 Apr 2015 14:45:49 +0000 (+0200) Subject: daemon/build: removed bytecode compilation, as the result is version-specific X-Git-Tag: v1.0.0-beta1~266^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74141fe3c7394d15ba4279ac04924546a78dceeb;p=thirdparty%2Fknot-resolver.git daemon/build: removed bytecode compilation, as the result is version-specific --- diff --git a/config.mk b/config.mk index 78d1340d8..004fced6a 100644 --- 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 diff --git a/daemon/daemon.mk b/daemon/daemon.mk index a39887311..677d23d15 100644 --- a/daemon/daemon.mk +++ b/daemon/daemon.mk @@ -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)