From 33c706bf78fbd8f9aad6ec837164a703b8a9a2e2 Mon Sep 17 00:00:00 2001
From: "Andrew M. Kuchling" <amk@amk.ca>
Date: Mon, 13 Aug 2001 13:56:24 +0000
Subject: [PATCH] Fix for NameError caught by PyChecker. (This command seems to
 be essentially untested; should fix that...)

---
 command/config.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/command/config.py b/command/config.py
index ce6cff8c..d4096918 100644
--- a/command/config.py
+++ b/command/config.py
@@ -272,8 +272,8 @@ class config (Command):
         from distutils.ccompiler import CompileError, LinkError
         self._check_compiler()
         try:
-            self._link(body, headers, include_dirs,
-                       libraries, library_dirs, lang)
+            src, obj, exe = self._link(body, headers, include_dirs,
+                                       libraries, library_dirs, lang)
             self.spawn([exe])
             ok = 1
         except (CompileError, LinkError, DistutilsExecError):
-- 
2.30.9