From 3825e6cb1008dea6062ef0c3f5ffecf249a3f420 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 20 Sep 2006 22:51:37 +0000 Subject: You need this rev to build congo. --- src/functiondirectoriesin.cpp | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'src/functiondirectoriesin.cpp') diff --git a/src/functiondirectoriesin.cpp b/src/functiondirectoriesin.cpp index ef2f097..c68fa5c 100644 --- a/src/functiondirectoriesin.cpp +++ b/src/functiondirectoriesin.cpp @@ -42,7 +42,18 @@ void FunctionDirectoriesIn::execute( Build *bld, const StringList &lInput, Strin { if( e->d_name[0] == '.' || e->d_name[0] == '\0' ) continue; - lOutput.push_back( prefix + e->d_name ); + std::string sOut = prefix + e->d_name; + lOutput.push_back( sOut ); + if( bld ) + { + std::string sV = lParams.front() + "/"; + sV += e->d_name; + bld->set( sOut, "fulldir", sV ); + } + else + { + printf("no build access.\n"); + } } } -- cgit v1.2.3