Update of /cvsroot/monetdb/buildtools/autogen/autogen
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv19918

Modified Files:
        am.py 
Log Message:
Don't add .tmpmil files or files in other directories to EXTRA_DIST.


Index: am.py
===================================================================
RCS file: /cvsroot/monetdb/buildtools/autogen/autogen/am.py,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -d -r1.53 -r1.54
--- am.py       13 Sep 2007 10:41:59 -0000      1.53
+++ am.py       13 Sep 2007 14:00:08 -0000      1.54
@@ -171,11 +171,11 @@
         tdeps = deps[target]
         for dtarget in tdeps:
             t, ext = split_filename(dtarget)
-            if ext not in automake_ext and dtarget not in am['EXTRA_DIST']:
+            if ext not in automake_ext and ext != 'tmpmil' and dtarget not in 
am['EXTRA_DIST'] and '/' not in dtarget:
                 am['EXTRA_DIST'].append(dtarget)
             org = find_org(deps, dtarget)
             if org in map['SOURCES']:
-                if ext in hdrs_ext and not dtarget in hdrs:
+                if ext in hdrs_ext and dtarget not in hdrs and ext != 'tmpmil' 
and '/' not in dtarget:
                     hdrs.append(dtarget)
                 am_find_hdrs_r(am, dtarget, deps, hdrs, hdrs_ext, map)
 


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to