changeset 5758:21eabc41a07c

lilypond-ancient: append $PATH. Fixes build without tools::coreutils etc.
author Jan Nieuwenhuizen <janneke@gnu.org>
date Mon, 12 Oct 2009 21:48:07 +0200
parents 6d8d788cb3c1
children e147e66c92a7
files gub/specs/lilypond-ancient.py
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gub/specs/lilypond-ancient.py	Mon Oct 12 21:01:54 2009 +0200
+++ b/gub/specs/lilypond-ancient.py	Mon Oct 12 21:48:07 2009 +0200
@@ -1,5 +1,7 @@
+import os
 #
 from gub import build
+from gub import loggedos
 from gub.specs import lilypond
 
 #LilyPond = LilyPond__simple
@@ -19,7 +21,7 @@
                   + ' config=%(builddir)s/config.make')
     def __init__ (self, settings, source):
         lilypond.LilyPond__simple.__init__ (self, settings, source)
-        build.change_dict (self, {'PATH': '%(cross_prefix)s/bin:%(tools_prefix)s/bin:%(tools_cross_prefix)s/bin'}) #:' + os.environ['PATH']
+        build.change_dict (self, {'PATH': '%(cross_prefix)s/bin:%(tools_prefix)s/bin:%(tools_cross_prefix)s/bin:' + os.environ['PATH']})
     def LD_PRELOAD (self):
         return ''
     def patch (self):