Frédéric Bohé
2011-Dec-09 08:18 UTC
[Nut-upsdev] [nut-commits] svn commit r3344 - branches/nut-scanner_dlopen
On Fri, 2011-12-09 at 03:46 +0000, Charles Lepple wrote:> Author: clepple-guest > Date: Fri Dec 9 03:46:11 2011 > New Revision: 3344 > URL: http://trac.networkupstools.org/projects/nut/changeset/3344 > > Log: > Force files to be overwritten (especially for libtool) > > Modified: > branches/nut-scanner_dlopen/autogen.sh > > Modified: branches/nut-scanner_dlopen/autogen.sh > =============================================================================> --- branches/nut-scanner_dlopen/autogen.sh Wed Dec 7 14:58:46 2011 (r3343) > +++ branches/nut-scanner_dlopen/autogen.sh Fri Dec 9 03:46:11 2011 (r3344) > @@ -32,4 +32,4 @@ > > # now we can safely call autoreconf > echo "Calling autoreconf..." > -autoreconf -i > +autoreconf -i --force >I am working on this issue. Forcing file overwrite will not allow to pass a "make distcheck-light successfully . After the "autoreconf -f" the NUT "INSTALL" file is replaced by the libltdl INSTALL file. Since asciidoc includes INSTALL file in some documents, the processing of this new INSTALL file fails since it's not in asciidoc format any more. I am not sure how to fix this properly yet. Fred> _______________________________________________ > nut-commits mailing list > nut-commits at lists.alioth.debian.org > http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/nut-commits-- Team Open Source Eaton - http://powerquality.eaton.com --------------------------------------------------------------------------
Charles Lepple
2011-Dec-09 12:07 UTC
[Nut-upsdev] [nut-commits] svn commit r3344 - branches/nut-scanner_dlopen
On Dec 9, 2011, at 3:18 AM, Fr?d?ric Boh? wrote:> On Fri, 2011-12-09 at 03:46 +0000, Charles Lepple wrote: >> Author: clepple-guest >> Date: Fri Dec 9 03:46:11 2011 >> New Revision: 3344 >> URL: http://trac.networkupstools.org/projects/nut/changeset/3344 >> >> Log: >> Force files to be overwritten (especially for libtool) >> >> Modified: >> branches/nut-scanner_dlopen/autogen.sh >> >> Modified: branches/nut-scanner_dlopen/autogen.sh >> =============================================================================>> --- branches/nut-scanner_dlopen/autogen.sh Wed Dec 7 14:58:46 2011 (r3343) >> +++ branches/nut-scanner_dlopen/autogen.sh Fri Dec 9 03:46:11 2011 (r3344) >> @@ -32,4 +32,4 @@ >> >> # now we can safely call autoreconf >> echo "Calling autoreconf..." >> -autoreconf -i >> +autoreconf -i --force >> > > > I am working on this issue. Forcing file overwrite will not allow to > pass a "make distcheck-light successfully . After the "autoreconf -f" > the NUT "INSTALL" file is replaced by the libltdl INSTALL file. Since > asciidoc includes INSTALL file in some documents, the processing of this > new INSTALL file fails since it's not in asciidoc format any more. > I am not sure how to fix this properly yet. > > FredOK, feel free to revert that commit. I was just experimenting.