changeset 5383:602ba2aa82ba

Move update_libtool from linux-x86::guile up to Guile. Fixes FreeBSD. See http://lists.gnu.org/archive/html/lilypond-devel/2009-08/msg00465.html
author Jan Nieuwenhuizen <janneke@gnu.org>
date Tue, 11 Aug 2009 09:38:40 +0200
parents 82ac909ba559
children ddfcf86015a9
files gub/specs/guile.py
diffstat 1 files changed, 3 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/gub/specs/guile.py	Mon Aug 10 15:28:30 2009 +0200
+++ b/gub/specs/guile.py	Tue Aug 11 09:38:40 2009 +0200
@@ -96,6 +96,9 @@
                        '%(builddir)s/libguile/libpath.h')
         target.AutoBuild.compile (self)
     def install (self):
+        # with 1.8.7: libtool: cannot install directory not ending in...
+        # after config.status is being re-run for building of libpath.h
+        self.update_libtool ()
         target.AutoBuild.install (self)
         majmin_version = '.'.join (self.expand ('%(version)s').split ('.')[0:2])
         
@@ -309,11 +312,6 @@
 ac_cv_func_pthread_getattr_np=${ac_cv_func_pthread_getattr_np=yes}
 ac_cv_func_pthread_sigmask=${ac_cv_func_pthread_sigmask=yes}
 '''
-    def install (self):
-        # with 1.8.7: libtool: cannot install directory not ending in...
-        # after config.status is being re-run for building of libpath.h
-        self.update_libtool ()
-        Guile.install (self)
 
 class Guile__tools (tools.AutoBuild, Guile):
     def _get_build_dependencies (self):