1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

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
This commit is contained in:
Michael Niedermayer 2004-07-08 11:02:04 +00:00
parent d88443ae89
commit aa99b8ff4f
2 changed files with 6 additions and 8 deletions

View File

@ -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

View File

@ -26,7 +26,8 @@ depend: $(SRCS)
$(CC) -MM $(CFLAGS) $^ 1>.depend
install:
install -m 755 $(HOOKS) $(INSTDIR)
install -d "$(prefix)/lib/vhook"
install -m 755 $(HOOKS) "$(prefix)/lib/vhook"
imlib2.so: imlib2.o
$(CC) -g -o $@ $(SHFLAGS) $< -lImlib2