diff options
author | James Almer <jamrial@gmail.com> | 2022-03-17 18:26:30 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2022-03-17 18:35:41 -0300 |
commit | b06eba6b7c5c69f45f2765fdd2923e8130cda020 (patch) | |
tree | e45b30292cd7f924f5a8b6890091a4892b1f2996 /Makefile | |
parent | 3feabcd5efdf4c520459b781bb779d7da1b68706 (diff) | |
download | ffmpeg-b06eba6b7c5c69f45f2765fdd2923e8130cda020.tar.gz |
Makefile: check config_components.h when comparing timestamps in component list files
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -79,10 +79,10 @@ CONFIGURABLE_COMPONENTS = \ $(SRC_PATH)/libavcodec/parsers.c \ $(SRC_PATH)/libavformat/protocols.c \ -config.h: ffbuild/.config +config_components.h: ffbuild/.config ffbuild/.config: $(CONFIGURABLE_COMPONENTS) @-tput bold 2>/dev/null - @-printf '\nWARNING: $(?) newer than config.h, rerun configure\n\n' + @-printf '\nWARNING: $(?) newer than config_components.h, rerun configure\n\n' @-tput sgr0 2>/dev/null SUBDIR_VARS := CLEANFILES FFLIBS HOSTPROGS TESTPROGS TOOLS \ |