Commit aa99b8ff authored by Michael Niedermayer's avatar Michael Niedermayer

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
parent d88443ae
...@@ -135,16 +135,13 @@ wininstaller: all install ...@@ -135,16 +135,13 @@ wininstaller: all install
install-man: install-man:
ifneq ($(CONFIG_WIN32),yes) ifneq ($(CONFIG_WIN32),yes)
if [ -f $(SRC_PATH)/doc/ffmpeg.1 ] ; then \ if [ -f $(SRC_PATH)/doc/ffmpeg.1 ] ; then \
install -d $(mandir)/man1 ; \ install -d "$(mandir)/man1" ; \
install -m 644 $(MANPAGE) $(mandir)/man1 ; \ install -m 644 $(MANPAGE) "$(mandir)/man1" ; \
fi fi
endif endif
install-vhook: $(prefix)/lib/vhook install-vhook:
$(MAKE) -C vhook install INSTDIR=$(prefix)/lib/vhook $(MAKE) -C vhook install
$(prefix)/lib/vhook:
install -d $@
installlib: installlib:
$(MAKE) -C libavcodec installlib $(MAKE) -C libavcodec installlib
......
...@@ -26,7 +26,8 @@ depend: $(SRCS) ...@@ -26,7 +26,8 @@ depend: $(SRCS)
$(CC) -MM $(CFLAGS) $^ 1>.depend $(CC) -MM $(CFLAGS) $^ 1>.depend
install: install:
install -m 755 $(HOOKS) $(INSTDIR) install -d "$(prefix)/lib/vhook"
install -m 755 $(HOOKS) "$(prefix)/lib/vhook"
imlib2.so: imlib2.o imlib2.so: imlib2.o
$(CC) -g -o $@ $(SHFLAGS) $< -lImlib2 $(CC) -g -o $@ $(SHFLAGS) $< -lImlib2
......
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