diff options
author | Memphiz <memphis@machzwo.de> | 2017-01-15 16:38:35 +0100 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2017-01-15 16:38:35 +0100 |
commit | fd2f71fbb161e25da008adf6cc9cf636798efe78 (patch) | |
tree | 6ddf97e7df8ed9f7c9fd31c3a15327d81fad67cf | |
parent | 7f0d428dd9b252a69ad11e5a57a9592597e09e94 (diff) |
move the touch command to the codegenerator makefile which runs on all platforms
-rw-r--r-- | codegenerator.mk | 1 | ||||
-rw-r--r-- | xbmc/cores/AudioEngine/Makefile.in | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/codegenerator.mk b/codegenerator.mk index 5f8bdd97de..dc93280d1a 100644 --- a/codegenerator.mk +++ b/codegenerator.mk @@ -69,3 +69,4 @@ else #build json builder - ".." because makefile is in the parent dir of "bin" $(MAKE) -C $(abspath $(@D)/..) endif +$(shell touch $(TOPDIR)/xbmc/cores/AudioEngine/AEDefines_override.h) diff --git a/xbmc/cores/AudioEngine/Makefile.in b/xbmc/cores/AudioEngine/Makefile.in index 9a3d486dcb..edb6b110bf 100644 --- a/xbmc/cores/AudioEngine/Makefile.in +++ b/xbmc/cores/AudioEngine/Makefile.in @@ -83,6 +83,5 @@ SRCS += Utils/AELimiter.cpp SRCS += Encoders/AEEncoderFFmpeg.cpp LIB = audioengine.a -$(shell touch AEDefines_override.h) include @abs_top_srcdir@/Makefile.include -include $(patsubst %.cpp,%.P,$(patsubst %.c,%.P,$(SRCS))) |