Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-11-08 03:02:15 +0300
committerMåns Rullgård <mans@mansr.com>2006-11-08 03:02:15 +0300
commit997baf014130b85828d918cb4054c17e57a8e1e5 (patch)
treea64707d3b0e8f9450ea0b68639730fd795310a87 /Makefile
parent94b594c68ae36848605766c84771674ef7b21bc9 (diff)
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 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 09e5fc6d88..ebcb2d826d 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
#
include config.mak
-VPATH=$(SRC_PATH)
+VPATH=$(SRC_PATH_BARE)
CFLAGS=$(OPTFLAGS) -I$(BUILD_ROOT) -I$(SRC_PATH) -I$(SRC_PATH)/libavutil \
-I$(SRC_PATH)/libavcodec -I$(SRC_PATH)/libavformat -I$(SRC_PATH)/libswscale \
@@ -91,7 +91,7 @@ ffplay_g$(EXESUF): ffplay.o cmdutils.o .libs
$(STRIP) $@
version.h:
- $(SRC_PATH)/version.sh "$(SRC_PATH)"
+ $(SRC_PATH)/version.sh $(SRC_PATH)
output_example$(EXESUF): output_example.o .libs
$(CC) $(LDFLAGS) -o $@ output_example.o $(EXTRALIBS)