diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2005-03-16 19:11:58 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-03-16 19:11:58 +0000 |
commit | cc973ecbe77ee6c273e2372ad24bb3aff0be5440 (patch) | |
tree | 148c53e54ae68a49e82f934828e66640d7cf6382 /vhook/Makefile | |
parent | 0e1ceacde98f912de8604ea7ebe321a1790bd4b6 (diff) | |
download | ffmpeg-cc973ecbe77ee6c273e2372ad24bb3aff0be5440.tar.gz |
add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
Originally committed as revision 4050 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook/Makefile')
-rw-r--r-- | vhook/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vhook/Makefile b/vhook/Makefile index 9415be191c..c77ae14460 100644 --- a/vhook/Makefile +++ b/vhook/Makefile @@ -26,8 +26,8 @@ depend: $(SRCS) $(CC) -MM $(CFLAGS) $^ 1>.depend install: - install -d "$(prefix)/lib/vhook" - install -m 755 $(HOOKS) "$(prefix)/lib/vhook" + install -d "$(libdir)/vhook" + install -m 755 $(HOOKS) "$(libdir)/vhook" imlib2.so: imlib2.o $(CC) -g -o $@ $(SHFLAGS) $< -lImlib2 |