From: Theodore Ts'o Date: Fri, 8 Mar 2002 01:55:01 +0000 (-0500) Subject: Makefile.in (check): Use LD_LIBRARY_PATH to run test programs. X-Git-Tag: E2FSPROGS-1_27~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=304905df4acb457faed3b807d31b84b46bebbd80;p=thirdparty%2Fe2fsprogs.git Makefile.in (check): Use LD_LIBRARY_PATH to run test programs. (From Philipp Thomas ) --- diff --git a/lib/ext2fs/ChangeLog b/lib/ext2fs/ChangeLog index cf4e91715..6e1f824a4 100644 --- a/lib/ext2fs/ChangeLog +++ b/lib/ext2fs/ChangeLog @@ -1,3 +1,8 @@ +2002-03-07 Theodore Tso + + * Makefile.in (check): Use LD_LIBRARY_PATH to run test programs. + (From Philipp Thomas ) + 2002-02-25 Theodore Tso * ext2_fs.h: Add structure definitions for the directory indexing diff --git a/lib/ext2fs/Makefile.in b/lib/ext2fs/Makefile.in index 54dc160a3..6297abff0 100644 --- a/lib/ext2fs/Makefile.in +++ b/lib/ext2fs/Makefile.in @@ -206,9 +206,9 @@ mkjournal: mkjournal.c $(STATIC_LIBEXT2FS) $(CC) -o mkjournal $(srcdir)/mkjournal.c -DDEBUG $(STATIC_LIBEXT2FS) $(LIBCOM_ERR) $(ALL_CFLAGS) check:: tst_badblocks tst_iscan tst_byteswap - ./tst_badblocks - ./tst_iscan - ./tst_byteswap + LD_LIBRARY_PATH=$(LIB) ./tst_badblocks + LD_LIBRARY_PATH=$(LIB) ./tst_iscan + LD_LIBRARY_PATH=$(LIB) ./tst_byteswap installdirs:: $(top_srcdir)/mkinstalldirs $(DESTDIR)$(libdir) \ diff --git a/resize/ChangeLog b/resize/ChangeLog index aaa87baa5..1a0093a28 100644 --- a/resize/ChangeLog +++ b/resize/ChangeLog @@ -1,3 +1,8 @@ +2002-03-07 Theodore Tso + + * Makefile.in (check): Use LD_LIBRARY_PATH to run test programs. + (From Philipp Thomas ) + 2002-02-24 Theodore Tso * Makefile.in (install): Remove any compressed man pages before diff --git a/resize/Makefile.in b/resize/Makefile.in index 6a2668f1d..20c747ce2 100644 --- a/resize/Makefile.in +++ b/resize/Makefile.in @@ -72,7 +72,8 @@ uninstall: done test_extent.out: test_extent $(srcdir)/test_extent.in - ./test_extent < $(srcdir)/test_extent.in > test_extent.out + LD_LIBRARY_PATH=$(LIB) ./test_extent < $(srcdir)/test_extent.in \ + > test_extent.out check:: test_extent.out @if cmp -s test_extent.out $(srcdir)/test_extent.in ; then \