Commit f14d4e7e authored by Diego Biurrun's avatar Diego Biurrun

Quote path expression to take care of $(prefix) possibly containing spaces.

Originally committed as revision 3821 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6041c217
......@@ -306,7 +306,7 @@ install:
endif
installlib: all install-headers
install -m 644 $(LIB) $(prefix)/lib
install -m 644 $(LIB) "$(prefix)/lib"
install-headers:
mkdir -p "$(prefix)/include/ffmpeg"
......
......@@ -125,7 +125,7 @@ install:
endif
installlib: all install-headers
install -m 644 $(LIB) $(prefix)/lib
install -m 644 $(LIB) "$(prefix)/lib"
install-headers:
mkdir -p "$(prefix)/include/ffmpeg"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment