15 May
2013
15 May
'13
6:58 p.m.
Fix path to libaoss.so using ${libdir} instead of ${exec_prefix}. ${libdir} has the value given at configure time and works with Debian's Multiarch implementation.
Signed-off-by: Jordi Mallach jordi@debian.org --- alsa/aoss.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/alsa/aoss.in b/alsa/aoss.in index c551431..d8e1d6d 100644 --- a/alsa/aoss.in +++ b/alsa/aoss.in @@ -6,8 +6,8 @@
if [ -d /proc/asound ]; then prefix=@prefix@ - exec_prefix=@exec_prefix@ - LD_PRELOAD=${exec_prefix}/$LIB/libaoss.so${LD_PRELOAD:+:$LD_PRELOAD} exec "$@" + libdir=@libdir@ + LD_PRELOAD=${libdir}/libaoss.so${LD_PRELOAD:+:$LD_PRELOAD} exec "$@" else exec "$@" fi
--
1.7.10.4