Browse Source

mplayer: remove not needed $(strip ...) calls in Makefile

Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Hans-Christian Egtvedt 16 years ago
parent
commit
fb11bbf5e9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      package/multimedia/mplayer/mplayer.mk

+ 2 - 2
package/multimedia/mplayer/mplayer.mk

@@ -19,7 +19,7 @@ endif
 
 
 MPLAYER_DEP_LIBS:=libmad
 MPLAYER_DEP_LIBS:=libmad
 
 
-ifeq ($(strip $(BR2_PACKAGE_ALSA_LIB)),y)
+ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
 MPLAYER_DEP_LIBS+=alsa-lib
 MPLAYER_DEP_LIBS+=alsa-lib
 endif
 endif
 
 
@@ -83,6 +83,6 @@ mplayer-dirclean:
 # Toplevel Makefile options
 # Toplevel Makefile options
 #
 #
 #############################################################
 #############################################################
-ifeq ($(strip $(BR2_PACKAGE_MPLAYER)),y)
+ifeq ($(BR2_PACKAGE_MPLAYER),y)
 TARGETS+=mplayer
 TARGETS+=mplayer
 endif
 endif