Commit 6881964cfabb364924d6bb7281782930a79dcf4a

Authored by Juan Quintela
Committed by Anthony Liguori
1 parent 7aac6cb1

make oss use OSS_LIBS

Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Showing 2 changed files with 2 additions and 2 deletions
Makefile.target
... ... @@ -440,7 +440,7 @@ ifdef CONFIG_FMOD
440 440 LIBS += $(FMOD_LIBS)
441 441 endif
442 442 ifdef CONFIG_OSS
443   -LIBS += $(CONFIG_OSS_LIB)
  443 +LIBS += $(OSS_LIBS)
444 444 endif
445 445  
446 446 sound-obj-y =
... ...
configure
... ... @@ -1639,7 +1639,7 @@ for drv in $audio_drv_list; do
1639 1639 echo "FMOD_LIBS=$fmod_lib" >> $config_host_mak
1640 1640 echo "FMOD_CFLAGS=-I$fmod_inc" >> $config_host_mak
1641 1641 elif test "$drv" = "oss"; then
1642   - echo "CONFIG_OSS_LIB=$oss_lib" >> $config_host_mak
  1642 + echo "OSS_LIBS=$oss_lib" >> $config_host_mak
1643 1643 fi
1644 1644 done
1645 1645 echo "" >>$config_host_h
... ...