From d10797a23ec623631f10a6c4aa68b3defe85de46 Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Mon, 14 Aug 2006 17:16:51 +0000 Subject: [PATCH] was: BF_FFMPEG_LIBPATH = '$(BF_FFMPEG)/lib' Needs to be: BF_FFMPEG_LIBPATH = '${BF_FFMPEG}/lib' There are some commented out ones that should maybe be switched as well so it doesn't happen again but this fixes the problem for now :) Kent --- config/linux2-config.py | 2 +- config/sunos5-config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/linux2-config.py b/config/linux2-config.py index 0b6deab2c8d..91568dc4588 100644 --- a/config/linux2-config.py +++ b/config/linux2-config.py @@ -100,7 +100,7 @@ BF_QUICKTIME_INC = '${BF_QUICKTIME}/include' WITH_BF_FFMPEG = 'false' # -DWITH_FFMPEG BF_FFMPEG = '/usr' BF_FFMPEG_INC = '${BF_FFMPEG}/include' -BF_FFMPEG_LIBPATH='$(BF_FFMPEG)/lib' +BF_FFMPEG_LIBPATH='${BF_FFMPEG}/lib' BF_FFMPEG_LIB = 'avformat avcodec avutil' # Mesa Libs should go here if your using them as well.... diff --git a/config/sunos5-config.py b/config/sunos5-config.py index 50d641cbff9..cf84a68e490 100644 --- a/config/sunos5-config.py +++ b/config/sunos5-config.py @@ -107,7 +107,7 @@ BF_QUICKTIME_INC = '${BF_QUICKTIME}/include' WITH_BF_FFMPEG = 'false' # -DWITH_FFMPEG BF_FFMPEG = '/usr/local' BF_FFMPEG_INC = '${BF_FFMPEG}/include' -BF_FFMPEG_LIBPATH='$(BF_FFMPEG)/lib' +BF_FFMPEG_LIBPATH='${BF_FFMPEG}/lib' BF_FFMPEG_LIB = 'avformat avcodec avutil' # Mesa Libs should go here if your using them as well....