1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

See ChangeLog: Sat Feb 13 12:14:42 CET 1999 Werner Koch

This commit is contained in:
Werner Koch 1999-02-13 11:19:14 +00:00
parent dc5ce112a3
commit 54629f721b
14 changed files with 60 additions and 22 deletions

View file

@ -1,3 +1,7 @@
Sat Feb 13 12:04:43 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
* autogen.sh: Now uses gettextize
Wed Feb 10 17:15:39 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
* config.sub, config.guess: Support i386-emx-os2

View file

@ -46,17 +46,22 @@ if (gettext --version </dev/null 2>/dev/null | awk 'NR==1 { split($4,A,"\."); \
fi
if test "$DIE" = "yes"; then
exit 1
fi
echo "Running gettextize... Ignore non-fatal messages."
echo "no" | gettextize --force
echo "Running aclocal..."
aclocal
echo "Running autoheader..."
autoheader
echo "Running automake --gnu ..."
automake --gnu;
autoheader
echo "Running autoconf..."
autoconf
echo "Ready to run ./configure"
echo "You can now run \"./configure\" and then \"make\"."

View file

@ -1,5 +1,8 @@
#!/bin/sh
# Make a snapshot of the CVS head revision for the gnupg webpages
# and put them into the FTP directory (so that the mirrors w/o rsync
# can access them
set -e
@ -13,7 +16,7 @@ fix_it () {
[ This is a snapshot of the NEWS file from the CVS head revision.
You will find the NEWS for the latest revision below the line
"Noteworthy changes in version 0.x.y".
(wk $(date +%Y-%m-%d)) ]
(wk $(date +%Y-%m-%d)) ]
EOF
@ -46,6 +49,10 @@ do_export () {
do_export gnupg-www gnupg-www
cd gnupg-www
tar czf /home/ftp/pub/gcrypt/old/webpages.tmp *
mv /home/ftp/pub/gcrypt/old/webpages.tmp /home/ftp/pub/gcrypt/old/webpages.tar.gz
exit 0