diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-04-02 22:41:58 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-04-02 22:41:58 +0000 |
commit | a8f9e7f641f9d3a8aae99f23b571623a88283ae6 (patch) | |
tree | 8657b71d28cc4fa91a664e2c5cc5a8d4b7144858 /libavutil/Makefile | |
parent | 3dd6531208f14f932d880de0661ad5163f0395a9 (diff) | |
download | ffmpeg-a8f9e7f641f9d3a8aae99f23b571623a88283ae6.tar.gz |
Fix lzo-test linking: -llzo2 should be in ELIBS, not EXTRALIBS.
Originally committed as revision 18320 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/Makefile')
-rw-r--r-- | libavutil/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/Makefile b/libavutil/Makefile index 8428446b02..8427346813 100644 --- a/libavutil/Makefile +++ b/libavutil/Makefile @@ -47,4 +47,4 @@ DIRS = arm bfin sh4 x86 include $(SUBDIR)../subdir.mak -$(SUBDIR)lzo-test$(EXESUF): EXTRALIBS += -llzo2 +$(SUBDIR)lzo-test$(EXESUF): ELIBS = -llzo2 |