mirror of
git://git.gnupg.org/gnupg.git
synced 2025-03-11 22:52:47 +01:00
* distfiles: Removed those files which which automake installs by
default. * autogen.sh: Replaced $() by backticks for system without a posix shell. Removed gawk specific quoting. By David Champion.
This commit is contained in:
parent
ca1bc23ef2
commit
bcad2222c7
@ -1,3 +1,11 @@
|
|||||||
|
2001-12-21 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
* distfiles: Removed those files which which automake installs by
|
||||||
|
default.
|
||||||
|
|
||||||
|
* autogen.sh: Replaced $() by backticks for system without a posix
|
||||||
|
shell. Removed gawk specific quoting. By David Champion.
|
||||||
|
|
||||||
2001-10-22 Werner Koch <wk@gnupg.org>
|
2001-10-22 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
* autogen.sh (aclocal_vers): Require automalke 1.5.
|
* autogen.sh (aclocal_vers): Require automalke 1.5.
|
||||||
|
@ -20,7 +20,8 @@ aclocal_vers=1.5
|
|||||||
|
|
||||||
DIE=no
|
DIE=no
|
||||||
if test "$1" = "--build-w32"; then
|
if test "$1" = "--build-w32"; then
|
||||||
tsdir=$(cd `dirname $0`; cd ..; pwd)
|
tmp=`dirname $0`
|
||||||
|
tsdir=`cd "$tmp"`; cd ..; pwd)
|
||||||
shift
|
shift
|
||||||
host=i386--mingw32
|
host=i386--mingw32
|
||||||
if [ ! -f $tsdir/scripts/config.guess ]; then
|
if [ ! -f $tsdir/scripts/config.guess ]; then
|
||||||
@ -116,7 +117,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if (gettext --version </dev/null 2>/dev/null | awk 'NR==1 { split($4,A,"\."); \
|
if (gettext --version </dev/null 2>/dev/null | awk 'NR==1 { split($4,A,"."); \
|
||||||
X=10000*A[1]+100*A[2]+A[3]; echo X; if( X >= 1038 ) exit 1; exit 0}')
|
X=10000*A[1]+100*A[2]+A[3]; echo X; if( X >= 1038 ) exit 1; exit 0}')
|
||||||
then
|
then
|
||||||
echo "**Error**: You must have "\`gettext\'" installed to compile $PGM."
|
echo "**Error**: You must have "\`gettext\'" installed to compile $PGM."
|
||||||
|
@ -1,11 +1,5 @@
|
|||||||
config.guess
|
|
||||||
config.sub
|
|
||||||
install-sh
|
|
||||||
mkinstalldirs
|
|
||||||
mkdiff
|
mkdiff
|
||||||
build-w32
|
build-w32
|
||||||
missing
|
|
||||||
gnupg.spec.in
|
gnupg.spec.in
|
||||||
autogen.sh
|
autogen.sh
|
||||||
ChangeLog
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user