diff options
author | Måns Rullgård <mans@mansr.com> | 2008-03-15 19:24:08 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-03-15 19:24:08 +0000 |
commit | 14f3ce3615fea787787299de336f27070794b6d0 (patch) | |
tree | 7e774048168ed996cc65bccd81d44f9457ec5954 /configure | |
parent | a426bbfc280b62c0e6997090651602f93e789d0d (diff) | |
download | ffmpeg-14f3ce3615fea787787299de336f27070794b6d0.tar.gz |
fix DEPEND_CMD for out of tree builds
Originally committed as revision 12454 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -935,7 +935,7 @@ SLIBNAME_WITH_MAJOR='$(SLIBNAME).$(LIBMAJOR)' LIB_INSTALL_EXTRA_CMD='$(RANLIB) "$(LIBDIR)/$(LIBNAME)"' # gcc stupidly only outputs the basename of targets with -MM -DEPEND_CMD='$(CC) -MM $(CFLAGS) $(filter-out %.h,$^) | sed "s,[0-9a-z._-]*: \([a-z0-9]*/\).*,\1&,"' +DEPEND_CMD='$(CC) -MM $(CFLAGS) $(filter-out %.h,$^) | sed "s,[0-9a-z._-]*: \($(SRC_DIR)/\)*\([a-z0-9]*/\)[^/]* ,\2&,"' VHOOKDEPEND_CMD='$(CC) -MM $(VHOOKCFLAGS) $(filter-out %.h,$^) | sed "s,^\([a-z]\),vhook/\1,"' # find source path |