[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Mucking with ltmain.sh
From: |
Ralf Wildenhues |
Subject: |
Re: Mucking with ltmain.sh |
Date: |
Fri, 11 Mar 2011 21:27:06 +0100 |
User-agent: |
Mutt/1.5.20 (2010-08-04) |
Hello Rhys,
* Rhys Ulerich wrote on Fri, Mar 11, 2011 at 09:03:06PM CET:
> Can anyone recommend either a clean way to perform the ltmain.sh
> surgery at bootstrap?
Most needed surgery at bootstrap can be done by having a ./bootstrap
script that contains something like
#! /bin/sh
autoreconf -vi
patch -p0 <<\EOF
--- ltmain.sh~
+++ ltmain.sh
... unidiff ...
EOF
because it will stop modifying code once it is fixed. Be sure to check
exit status semantics of patch.
The actual issue should be fixed in Libtool too, of course.
Thanks,
Ralf