Changeset: 36aea7ea5952 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=36aea7ea5952
Modified Files:
buildtools/autogen/autogen/am.py
Branch: Oct2010
Log Message:
Remove unused argument.
diffs (75 lines):
diff -r 4cb6e699854e -r 36aea7ea5952 buildtools/autogen/autogen/am.py
--- a/buildtools/autogen/autogen/am.py Sat Nov 20 20:43:29 2010 +0100
+++ b/buildtools/autogen/autogen/am.py Sat Nov 20 20:45:20 2010 +0100
@@ -291,7 +291,7 @@
am['MILHACK'][n] = " $(%s_LTLIBRARIES)" % os.path.basename(f)
fd.write("\n")
-def am_deps(fd, deps, objext, am):
+def am_deps(fd, deps, am):
if not am['DEPS']:
fd.write("if NEED_MX\n")
for t, deplist in deps.items():
@@ -387,7 +387,7 @@
am['InstallList'].append("\t"+sd+"/"+script+cond+"\n")
am_find_ins(am, scripts)
- am_deps(fd, scripts['DEPS'], "\.o", am)
+ am_deps(fd, scripts['DEPS'], am)
# return the unique elements of the argument list
def uniq(l):
@@ -445,7 +445,7 @@
am['InstallList'].append("\t"+sd+"/"+header+cond+"\n")
am_find_ins(am, headers)
- am_deps(fd, headers['DEPS'], "\.o", am)
+ am_deps(fd, headers['DEPS'], am)
for src in headers['SOURCES']:
am['EXTRA_DIST'].append(src)
@@ -486,7 +486,7 @@
am['UNINSTALL'].append(name)
am_find_ins(am, docmap)
- am_deps(fd, docmap['DEPS'], "\.o", am)
+ am_deps(fd, docmap['DEPS'], am)
def am_normalize(name):
return string.replace(name, '-', '_')
@@ -613,7 +613,7 @@
am_find_hdrs(am, binmap)
am_find_ins(am, binmap)
- am_deps(fd, binmap['DEPS'], ".o", am)
+ am_deps(fd, binmap['DEPS'], am)
def am_bins(fd, var, binsmap, am):
@@ -693,7 +693,7 @@
am['EXTRA_DIST'].append(target)
am_find_ins(am, binsmap)
- am_deps(fd, binsmap['DEPS'], ".o", am)
+ am_deps(fd, binsmap['DEPS'], am)
def am_mods_to_libs(fd, var, modmap, am):
modname = var[:-4]+"LIBS"
@@ -826,7 +826,7 @@
am_find_hdrs(am, libmap)
am_find_ins(am, libmap)
- am_deps(fd, libmap['DEPS'], ".lo", am)
+ am_deps(fd, libmap['DEPS'], am)
def am_libs(fd, var, libsmap, am):
@@ -923,7 +923,7 @@
am['EXTRA_DIST'].append(target)
am_find_ins(am, libsmap)
- am_deps(fd, libsmap['DEPS'], ".lo", am)
+ am_deps(fd, libsmap['DEPS'], am)
def am_gem(fd, var, gem, am):
rd = 'RUBY_DIR'
_______________________________________________
Checkin-list mailing list
[email protected]
http://mail.monetdb.org/mailman/listinfo/checkin-list