diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-03-02 09:33:57 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-03-02 09:33:57 +0000 |
commit | 873b092353f95a852e4f2f7639fc13bc8b81cb41 (patch) | |
tree | 202ac8e4f00554e0f931951f690cb07fa7b68154 | |
parent | 2fddbb68b6651c9ebdee762ecc4dbb4c5934aa89 (diff) | |
download | ffmpeg-873b092353f95a852e4f2f7639fc13bc8b81cb41.tar.gz |
version.h should depend on config.mak.
The extra version string that is passed to configure is recorded in config.mak
and changes to config.mak can therefore make version.h rebuilds necessary.
Originally committed as revision 17730 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | common.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mak b/common.mak index 4be056c876..35c05795fb 100644 --- a/common.mak +++ b/common.mak @@ -48,7 +48,7 @@ ifeq ($(wildcard $(SVN_ENTRIES)),$(SVN_ENTRIES)) $(BUILD_ROOT_REL)/version.h: $(SVN_ENTRIES) endif -$(BUILD_ROOT_REL)/version.h: $(SRC_PATH_BARE)/version.sh +$(BUILD_ROOT_REL)/version.h: $(SRC_PATH_BARE)/version.sh config.mak $< $(SRC_PATH) $@ $(EXTRA_VERSION) install: install-libs install-headers |