]> git.donarmstrong.com Git - lilypond.git/blobdiff - bin/mf-deps.in
release: 0.1.50
[lilypond.git] / bin / mf-deps.in
old mode 100644 (file)
new mode 100755 (executable)
index 6d022ff..3483cfc
@@ -73,7 +73,8 @@ class Targetdeps:
 
     def target_string(self):
        # ugh.  Closures, anyone?
-       targets =  map (lambda x,y = self.basename: 'out/' + y + '.' + x, postfixes)
+#      targets =  map (lambda x,y = self.basename: 'out/' + y + '.' + x, postfixes)
+       targets =  map (lambda x,y = self.basename: y + '.' + x, postfixes)
        depstring = reduce(lambda x,y: x + ' ' + y, self.depfiles) 
        dependencies = map (lambda x, y=depstring: x + ': ' + y, targets)