diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-08 00:02:15 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-08 00:02:15 +0000 |
commit | 997baf014130b85828d918cb4054c17e57a8e1e5 (patch) | |
tree | a64707d3b0e8f9450ea0b68639730fd795310a87 /vhook | |
parent | 94b594c68ae36848605766c84771674ef7b21bc9 (diff) | |
download | ffmpeg-997baf014130b85828d918cb4054c17e57a8e1e5.tar.gz |
allow spaces in source and build directory names
out of tree builds from a source dir with spaces is impossible
due to how make handles vpath
Originally committed as revision 6938 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook')
-rw-r--r-- | vhook/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vhook/Makefile b/vhook/Makefile index e784d501d8..06b48935e0 100644 --- a/vhook/Makefile +++ b/vhook/Makefile @@ -1,6 +1,6 @@ include ../config.mak -VPATH=$(SRC_PATH)/vhook +VPATH=$(SRC_PATH_BARE)/vhook CFLAGS=-I$(BUILD_ROOT) -I$(SRC_PATH) -I$(SRC_PATH)/libavutil -I$(SRC_PATH)/libavcodec \ -I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libswscale $(VHOOKCFLAGS) -DHAVE_AV_CONFIG_H |