diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-07-08 11:02:04 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-07-08 11:02:04 +0000 |
commit | aa99b8ff4fe21386791da7a206eda963c96bf32f (patch) | |
tree | be0f6df9ce63b04a38840f73c5a4d8536e3f756c /Makefile | |
parent | d88443ae89a50f3cc8f3b336389ab45180612579 (diff) | |
download | ffmpeg-aa99b8ff4fe21386791da7a206eda963c96bf32f.tar.gz |
spaces in the patch fix by (Nicolas Boos <nicolas.boos at wanadoo dot fr>)
Originally committed as revision 3296 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -135,16 +135,13 @@ wininstaller: all install install-man: ifneq ($(CONFIG_WIN32),yes) if [ -f $(SRC_PATH)/doc/ffmpeg.1 ] ; then \ - install -d $(mandir)/man1 ; \ - install -m 644 $(MANPAGE) $(mandir)/man1 ; \ + install -d "$(mandir)/man1" ; \ + install -m 644 $(MANPAGE) "$(mandir)/man1" ; \ fi endif -install-vhook: $(prefix)/lib/vhook - $(MAKE) -C vhook install INSTDIR=$(prefix)/lib/vhook - -$(prefix)/lib/vhook: - install -d $@ +install-vhook: + $(MAKE) -C vhook install installlib: $(MAKE) -C libavcodec installlib |