diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-02-11 20:54:40 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-02-11 20:54:40 +0000 |
commit | 26d469117fd544fab3cdbbf5f4a042bc395c54af (patch) | |
tree | 1820b2af244ed616d873f1add5006c95b5e885f6 | |
parent | a44a8bb818934cc34d82fc4c61ae7b2abd906f91 (diff) | |
download | ffmpeg-26d469117fd544fab3cdbbf5f4a042bc395c54af.tar.gz |
Quote all installation paths to protect against spaces in the path.
Originally committed as revision 4992 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/libpostproc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/libpostproc/Makefile b/libavcodec/libpostproc/Makefile index 1cc64352f8..e34ac73c40 100644 --- a/libavcodec/libpostproc/Makefile +++ b/libavcodec/libpostproc/Makefile @@ -68,9 +68,9 @@ install-lib-static: $(LIB) install -m 644 $(LIB) "$(libdir)" install-headers: - install -d $(incdir) - install -m 644 postprocess.h $(incdir)/postprocess.h - install -m 644 $(SRC_PATH)/libpostproc.pc $(libdir)/pkgconfig + install -d "$(incdir)" + install -m 644 postprocess.h "$(incdir)/postprocess.h" + install -m 644 $(SRC_PATH)/libpostproc.pc "$(libdir)/pkgconfig" # |