2008-04-24 Mike Frysinger <vapier@gentoo.org>

* configure.ac: [ 1950061 ] Look for the ChangeLog in $srcdir.


git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1182 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Mike Frysinger 17 years ago
parent ecff4c7410
commit d71ddbb3f1

@ -5,6 +5,7 @@
variable due to portability issues (like with libusb-win32).
* src/jtag.c (jtag_readline_loop): [ 1950315 ] Fix quiting when
using the non readline version.
* configure.ac: [ 1950061 ] Look for the ChangeLog in $srcdir.
2008-04-19 Kolja Waschk <kawk>

@ -41,7 +41,7 @@ if test -n "$SVN" -a -x "$SVN"; then
fi
fi
if test "$SVN_REVISION" -eq 0 -a -e "$srcdir/ChangeLog"; then
SVN_REVISION=`awk 'BEGIN { x=0 } /Revision: / { if($2>x) x=$2; } END { printf "%d\n",x }' ChangeLog`
SVN_REVISION=`awk 'BEGIN { x=0 } /Revision: / { if($2>x) x=$2; } END { printf "%d\n",x }' "$srcdir/ChangeLog"`
if test "$SVN_REVISION" -ne "0" ; then
AC_MSG_RESULT([from ChangeLog: $SVN_REVISION])
fi

Loading…
Cancel
Save