Changeset 502 in MondoRescue


Ignore:
Timestamp:
Apr 30, 2006, 12:37:43 AM (18 years ago)
Author:
bcornec
Message:

Internationalization: gettextize is an unfriendly tool that you can't invoke non-interactively.
So we now copy it, hack it to make it non-interactive, and run it, then delete it.
Everything in bootstrap.
Should end the Internationalization patch integration

Location:
branches/stable/mondo
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/stable/mondo/bootstrap

    r500 r502  
    2828make maintainer-clean >/dev/null 2>&1
    2929libtoolize -f -c --automake
    30 gettextize -c -f --no-changelog < /dev/null
     30cp /usr/bin/gettextize .
     31perl -pi -e 's~read dummy < /dev/tty~~' gettextize
     32./gettextize -c -f --no-changelog < /dev/null
     33rm -f gettextize
    3134aclocal -I m4
    3235autoheader
  • branches/stable/mondo/configure.in

    r501 r502  
    123123AC_CHECK_FUNCS([bzero getcwd memmove memset mkdir mkfifo setenv strcasecmp strchr strerror strrchr strstr])
    124124
    125 AC_OUTPUT([Makefile mondo/Makefile mondo/common/Makefile mondo/mondoarchive/Makefile mondo/mondorestore/Makefile mondo/restore-scripts/Makefile mondo/restore-scripts/mondo/Makefile mondo/restore-scripts/usr/Makefile mondo/restore-scripts/usr/bin/Makefile mondo/post-nuke.sample/Makefile mondo/post-nuke.sample/usr/Makefile mondo/post-nuke.sample/usr/bin/Makefile po/Makefile.in])
     125AC_OUTPUT([Makefile mondo/Makefile mondo/common/Makefile mondo/mondoarchive/Makefile mondo/mondorestore/Makefile mondo/restore-scripts/Makefile mondo/restore-scripts/mondo/Makefile mondo/restore-scripts/usr/Makefile mondo/restore-scripts/usr/bin/Makefile mondo/post-nuke.sample/Makefile mondo/post-nuke.sample/usr/Makefile mondo/post-nuke.sample/usr/bin/Makefile])
  • branches/stable/mondo/mondo/common/newt-specific.c

    r501 r502  
    12531253                    _(" done; %2ld:%02ld to go"),
    12541254                    time_remaining / 60, time_remaining % 60);
    1255             printf(_("---progress-form---4--- %s"), taskprogress, "\r\n");
     1255            printf(_("---progress-form---4--- %s\r\n"), taskprogress);
    12561256        } else {
    12571257            center_string(blurb1, 54);
Note: See TracChangeset for help on using the changeset viewer.