From bde4065f5a32c12948460369b3a99d28f1ffda15 Mon Sep 17 00:00:00 2001 From: Randall Hunt Date: Tue, 18 Sep 2012 17:21:33 -0400 Subject: [PATCH] fix module searchpath for 2.2 --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 443dc5d10f0..27d542ef1d9 100644 --- a/SConstruct +++ b/SConstruct @@ -861,7 +861,7 @@ def doConfigure(myenv): # discover modules (subdirectories of db/modules/), and # load the (python) module for each module's build.py - modules = moduleconfig.discover_modules('.') + modules = moduleconfig.discover_modules('src/mongo/') # ask each module to configure itself, and return a # dictionary of name => list_of_sources for each module.