Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2006-08-14 21:16:51 +0400
committerKent Mein <mein@cs.umn.edu>2006-08-14 21:16:51 +0400
commitd10797a23ec623631f10a6c4aa68b3defe85de46 (patch)
tree6603d58dc0d1c9a1c8cde7cf8c7735e91654a680 /config
parenta01a0e625694ac3636391c665767a69622cac830 (diff)
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
Diffstat (limited to 'config')
-rw-r--r--config/linux2-config.py2
-rw-r--r--config/sunos5-config.py2
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....