From caf8e251cd306bdc21c4f5a0556d4375f3d09f63 Mon Sep 17 00:00:00 2001 From: diego Date: Thu, 15 Mar 2007 08:49:56 +0000 Subject: [PATCH] Rename LIBS variable to more standard name EXTRALIBS. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22597 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libdha/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libdha/Makefile b/libdha/Makefile index 403a4b60c1..f63d30c940 100644 --- a/libdha/Makefile +++ b/libdha/Makefile @@ -28,7 +28,7 @@ CFLAGS = -fPIC -I. -I.. $(OPTFLAGS) ifeq ($(TARGET_OS),OpenBSD) ifeq ($(TARGET_ARCH_X86),yes) -LIBS += -li386 +EXTRALIBS += -li386 endif endif @@ -45,7 +45,7 @@ $(LIBNAME): $(OBJS_MPLAYER) ifeq ($(TARGET_WIN32),yes) $(AR) r $@ $^ else - $(CC) -shared -Wl,-soname -Wl,$@ -o $@ $^ $(LIBS) + $(CC) -shared -Wl,-soname -Wl,$@ -o $@ $^ $(EXTRALIBS) ln -sf $@ $(SHORTNAME) ln -sf $@ $(VSHORTNAME) endif