From 354609aea5592d7871044ee830915586378e01bc Mon Sep 17 00:00:00 2001 From: rdb Date: Sat, 27 Jun 2009 16:22:56 +0000 Subject: [PATCH] Remove confusing warning message --- makepanda/makepandacore.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makepanda/makepandacore.py b/makepanda/makepandacore.py index 28dbc1bbfe..33274e9fb8 100644 --- a/makepanda/makepandacore.py +++ b/makepanda/makepandacore.py @@ -1044,8 +1044,8 @@ def CheckLinkerLibraryPath(): if (os.environ.has_key("LD_LIBRARY_PATH")): ldpath = ldpath + os.environ["LD_LIBRARY_PATH"].split(":") if (ldpath.count(builtlib)==0): - WARNINGS.append("Caution: the "+os.path.join(OUTPUTDIR,"lib")+" directory is not in LD_LIBRARY_PATH") - WARNINGS.append("or /etc/ld.so.conf. You must add it before using panda.") + #WARNINGS.append("Caution: the "+os.path.join(OUTPUTDIR,"lib")+" directory is not in LD_LIBRARY_PATH") + #WARNINGS.append("or /etc/ld.so.conf. You must add it before using panda.") if (os.environ.has_key("LD_LIBRARY_PATH")): os.environ["LD_LIBRARY_PATH"] = builtlib + ":" + os.environ["LD_LIBRARY_PATH"] else: