add ChangeLog and fix for builddir != srcdir

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9680 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2005-02-25 05:08:08 +00:00
parent 399dc797e7
commit 4b518dbae5
4 changed files with 11 additions and 3 deletions

View File

@ -0,0 +1,6 @@
2005-02-25 Lars Gullik Bjonnes <larsbj@gullik.net>
* Makefile.am (regfiles): fix for builddir != srcdir
* test_lstrings (regfile): fix for builddir != srcdir
* test_convert (reffile): ditto

View File

@ -1,5 +1,7 @@
include $(top_srcdir)/config/common.am
EXTRA_DIST = test_convert test_lstrings regfiles
TESTS = \
test_convert \
test_lstrings
@ -22,5 +24,5 @@ lstrings_SOURCES = \
regfiles: ${check_PROGRAMS}
for all in ${check_PROGRAMS} ; do \
./$$all > regfiles/$$all ; \
./$$all > ${srcdir}/regfiles/$$all ; \
done

View File

@ -1,6 +1,6 @@
#!/bin/bash
regfile=`cat regfiles/convert`
regfile=`cat ${srcdir}/regfiles/convert`
output=`./convert`
test "$regfile" = "$output"

View File

@ -1,6 +1,6 @@
#!/bin/bash
regfile=`cat regfiles/lstrings`
regfile=`cat ${srcdir}/regfiles/lstrings`
output=`./lstrings`
test "$regfile" = "$output"