From 61cc68225f6e81b7ee1f426897b893ac73958fda Mon Sep 17 00:00:00 2001 From: rdb Date: Sun, 6 Dec 2009 10:35:16 +0000 Subject: [PATCH] Fix another embarassing typo that causes huge disasters --- makepanda/makepanda.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makepanda/makepanda.py b/makepanda/makepanda.py index fd66ddf178..d1d8ca6627 100755 --- a/makepanda/makepanda.py +++ b/makepanda/makepanda.py @@ -1094,7 +1094,7 @@ def CompileAnything(target, inputs, opts, progress = None): ProgressOutput(progress, "Linking dynamic library", target) # Add version number to the dynamic library, on unix - if (origsuffix==".dll" and "MODULE" not in OPTS and not sys.platform.startswith("win") and not RTDIST): + if (origsuffix==".dll" and "MODULE" not in opts and not sys.platform.startswith("win") and not RTDIST): if (sys.platform == "darwin"): if (target.lower().endswith(".dylib")): target = target[:-5] + VERSION + ".dylib"