From 997baf014130b85828d918cb4054c17e57a8e1e5 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Wed, 8 Nov 2006 00:02:15 +0000 Subject: 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 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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) -- cgit v1.2.3