diff options
author | Måns Rullgård <mans@mansr.com> | 2006-03-24 20:34:00 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-03-24 20:34:00 +0000 |
commit | a11a334d186de8ba46a109ded06002a167fa9a8b (patch) | |
tree | 0f1f819550fb1e23e6221d7fb9321363386770b4 | |
parent | ec04d244b50ca0d6c8a87234ed35315e3f3c7ba0 (diff) | |
download | ffmpeg-a11a334d186de8ba46a109ded06002a167fa9a8b.tar.gz |
make install target depend on vhooks
Originally committed as revision 5213 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | vhook/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vhook/Makefile b/vhook/Makefile index 2fb079d279..6a65731844 100644 --- a/vhook/Makefile +++ b/vhook/Makefile @@ -26,7 +26,7 @@ SRCS := $(HOOKS:$(SLIBSUF)=.c) depend: $(SRCS) $(CC) -MM $(CFLAGS) $^ 1>.depend -install: +install: $(HOOKS) install -d "$(libdir)/vhook" install -m 755 $(HOOKS) "$(libdir)/vhook" |