diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-09-07 23:04:26 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-09-07 23:04:26 +0000 |
commit | 529dd3c9ea61daff3efd090a2c5b2af9b1726df5 (patch) | |
tree | 49d8e07be3030dcefa903a6e368feb22a5873a5a /vhook | |
parent | a41104f86a296299cd74f2878e08312b5079cc8f (diff) | |
download | ffmpeg-529dd3c9ea61daff3efd090a2c5b2af9b1726df5.tar.gz |
Move required libs after the object file for the shared lib compilation.
Fixes Cygwin build as reported by Victor Paesa.
Originally committed as revision 6192 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'vhook')
-rw-r--r-- | vhook/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vhook/Makefile b/vhook/Makefile index 25fdcf315c..60ff0bede0 100644 --- a/vhook/Makefile +++ b/vhook/Makefile @@ -35,7 +35,7 @@ uninstall: -rmdir "$(shlibdir)/vhook/" %$(SLIBSUF): %.o - $(CC) $(LDFLAGS_$@) $(LDFLAGS) -g -o $@ $(VHOOKSHFLAGS) $< + $(CC) $(LDFLAGS) -g -o $@ $(VHOOKSHFLAGS) $< $(LDFLAGS_$@) clean: rm -f *.o *.d *~ *.a *.lib *.so *.dylib *.dll |