diff options
author | James Almer <jamrial@gmail.com> | 2017-04-13 17:06:05 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-04-13 17:06:05 -0300 |
commit | 7f933718dc557ebff19cad94842283db5ff2b74b (patch) | |
tree | c7a55a38e499be0509d3c01e33451d9775476c91 /Makefile | |
parent | a5a56bd3dfa31edd1be5af2befee467d1e6e845e (diff) | |
parent | 4104cc56225f29ce1cded8b2876f8748460232a6 (diff) | |
download | ffmpeg-streaming-7f933718dc557ebff19cad94842283db5ff2b74b.zip ffmpeg-streaming-7f933718dc557ebff19cad94842283db5ff2b74b.tar.gz |
Merge commit '4104cc56225f29ce1cded8b2876f8748460232a6'
* commit '4104cc56225f29ce1cded8b2876f8748460232a6':
build: Warn that reconfiguration is necessary if version.h files changed
Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -81,13 +81,14 @@ tools/uncoded_frame$(EXESUF): ELIBS = $(FF_EXTRALIBS) CONFIGURABLE_COMPONENTS = \ $(wildcard $(FFLIBS:%=$(SRC_PATH)/lib%/all*.c)) \ + $(wildcard $(FFLIBS:%=$(SRC_PATH)/lib%/version.h)) \ $(SRC_PATH)/libavcodec/bitstream_filters.c \ $(SRC_PATH)/libavformat/protocols.c \ config.h: .config .config: $(CONFIGURABLE_COMPONENTS) @-tput bold 2>/dev/null - @-printf '\nWARNING: $(?F) newer than config.h, rerun configure\n\n' + @-printf '\nWARNING: $(?) newer than config.h, rerun configure\n\n' @-tput sgr0 2>/dev/null SUBDIR_VARS := CLEANFILES EXAMPLES FFLIBS HOSTPROGS TESTPROGS TOOLS \ |