mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
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:
parent
399dc797e7
commit
4b518dbae5
6
src/support/tests/ChangeLog
Normal file
6
src/support/tests/ChangeLog
Normal 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
|
@ -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
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
regfile=`cat regfiles/convert`
|
||||
regfile=`cat ${srcdir}/regfiles/convert`
|
||||
output=`./convert`
|
||||
|
||||
test "$regfile" = "$output"
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
regfile=`cat regfiles/lstrings`
|
||||
regfile=`cat ${srcdir}/regfiles/lstrings`
|
||||
output=`./lstrings`
|
||||
|
||||
test "$regfile" = "$output"
|
||||
|
Loading…
Reference in New Issue
Block a user