diff options
author | Fredrik Orderud <fredrik.orderud@idi.ntnu.no> | 2005-11-07 01:32:29 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2005-11-07 01:32:29 +0000 |
commit | 25f8db58eef71e17f98d84dc2d51427f1bd08ddf (patch) | |
tree | b8e046bef2a2996938434a5057cb4764e6166320 /libavutil | |
parent | 7c017693c9388ba1284c58fbb930577727d8c206 (diff) | |
download | ffmpeg-25f8db58eef71e17f98d84dc2d51427f1bd08ddf.tar.gz |
Put double-quotes around the install path in the "install-headers" section
of the makefiles for libavcodec, libavformat and libavutil.
Fixes installing into paths with spaces in them, i.e. Windows.
patch by Fredrik Orderud < fredrik . orderud -- at -- idi . ntnu . no >
Originally committed as revision 4680 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 6765cc7ea1..4308cd09fd 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -84,8 +84,8 @@ install-headers: $(SRC_PATH)/libavutil/rational.h \ $(SRC_PATH)/libavutil/intfloat_readwrite.h \ "$(prefix)/include/ffmpeg" - install -d $(libdir)/pkgconfig - install -m 644 ../libavutil.pc $(libdir)/pkgconfig + install -d "$(libdir)/pkgconfig" + install -m 644 ../libavutil.pc "$(libdir)/pkgconfig" # # include dependency files if they exist |