Changeset 2fa5f26


Ignore:
Timestamp:
06/11/2012 12:18:58 AM (12 years ago)
Author:
Ken Moffat <ken@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
7b08ae24
Parents:
f76a52e
Message:

kbd-1.15.3 : another attempt at fixing it properly, tested in Pacific/Pago_Pago (and also /Kiritimati) with a little allowance for future TZs later than Pago_Pago.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9882 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    rf76a52e r2fa5f26  
    3737
    3838-->
     39    <listitem>
     40      <para>2012-06-10</para>
     41      <itemizedlist>
     42         <listitem>
     43           <para>[ken] - kbd-1.15.3 : go back to changing configure, and touch
     44           aclocal.m4 : thanks to Bryan for explaining the problem.</para>
     45         </listitem>
     46      </itemizedlist>
     47    </listitem>
     48
    3949    <listitem>
    4050      <para>2012-06-07</para>
  • chapter06/kbd.xml

    rf76a52e r2fa5f26  
    6969    <command>setfont</command> sizes the console appropriately) and its manpage.</para>
    7070
    71     <para>Because we change <filename>Makefile.in</filename>, with modern autotools
    72     various commands will be rerun by <command>make</command> after
    73     <command>configure</command> has run.  In this case, <filename>configure</filename>
    74     will be regenerated, so we need to change <filename>configure.ac</filename>.
    75     Running <command>autoreconf</command> ensures this all happens before
    76     <command>configure</command> is run, instead of during <command>make</command>.
    77     </para>
    78 
    79 <screen><userinput remap="pre">sed -i 's/\(RESIZECONS_PROGS=\)yes/\1no/' configure.ac &amp;&amp;
     71    <para>The shipped version of <filename>configure.ac</filename> is newer than
     72    <filename>aclocal.m4</filename>, so autotools will be run by <command>make</command>
     73    which will overwrite the change to <filename>configure</filename>. Alter the date
     74    and time of <filename>configure.ac</filename> - this uses the system timezone, so we
     75    pick a time that is sufficiently old in all timezones.</para>
     76
     77<screen><userinput remap="pre">sed -i 's/\(RESIZECONS_PROGS=\)yes/\1no/' configure &amp;&amp;
    8078sed -i 's/resizecons.8 //' man/man8/Makefile.in &amp;&amp;
    81 autoreconf</userinput></screen>
     79touch -d '2011-05-07 08:30' configure.ac</userinput></screen>
    8280
    8381    <para>Prepare Kbd for compilation:</para>
  • general.ent

    rf76a52e r2fa5f26  
    1 <!ENTITY version "SVN-20120607">
    2 <!ENTITY releasedate "June 7, 2012">
     1<!ENTITY version "SVN-20120610">
     2<!ENTITY releasedate "June 10, 2012">
    33<!ENTITY copyrightdate "1999-2012"><!-- jhalfs needs a literal dash, not &ndash; -->
    44<!ENTITY milestone "7.2">
Note: See TracChangeset for help on using the changeset viewer.