diff options
author | Måns Rullgård <mans@mansr.com> | 2009-02-21 18:19:29 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-02-21 18:19:29 +0000 |
commit | 333d5374d0de2355068a21d15d6098fab13753b1 (patch) | |
tree | 9bcdf0b6007c4b389e1d7537942482aef86ba75b /configure | |
parent | 36798f1bf014e6da142c2089ffc0a6a858bde53a (diff) | |
download | ffmpeg-333d5374d0de2355068a21d15d6098fab13753b1.tar.gz |
Remove special treatment of version.h in DEPEND_CMD
Originally committed as revision 17484 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1196,7 +1196,7 @@ target_path='.' # gcc stupidly only outputs the basename of targets with -MM, but we need the # full relative path for objects in subdirectories for non-recursive Make. -DEPEND_CMD='$(CC) $(CFLAGS) -MM -MG $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o," -e "s,\\([[:space:]]\\)\\(version\\.h\\),\\1\$$(BUILD_ROOT_REL)/\\2,"' +DEPEND_CMD='$(CC) $(CFLAGS) -MM $< | sed -e "/^\#.*/d" -e "s,^[[:space:]]*$(*F)\\.o,$(@D)/$(*F).o,"' # find source path source_path="`dirname \"$0\"`" |