diff options
author | Martijn Kaijser <martijn@xbmc.org> | 2017-01-25 06:41:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-25 06:41:25 +0100 |
commit | 40a8e8ee2af3b51a45ca9312020834c90c8e5d33 (patch) | |
tree | dd5e3311dc59223818d0a52c2325efdae0b44a5a | |
parent | a994eab1218f9bec90de102e7544cc1ff8ab1d0f (diff) | |
parent | fd2f71fbb161e25da008adf6cc9cf636798efe78 (diff) |
Merge pull request #11462 from Memphiz/revertrate
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))) |