]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
Makefile.in (check): Use LD_LIBRARY_PATH to run test programs.
authorTheodore Ts'o <tytso@mit.edu>
Fri, 8 Mar 2002 01:55:01 +0000 (20:55 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Fri, 8 Mar 2002 01:55:01 +0000 (20:55 -0500)
(From Philipp Thomas <pthomas@suse.de>)

lib/ext2fs/ChangeLog
lib/ext2fs/Makefile.in
resize/ChangeLog
resize/Makefile.in

index cf4e917158adb97ae3f91fba2c565eb92317f515..6e1f824a42a8578a6f8006ab0be01b42fb0df4c4 100644 (file)
@@ -1,3 +1,8 @@
+2002-03-07  Theodore Tso  <tytso@mit.edu>
+
+       * Makefile.in (check): Use LD_LIBRARY_PATH to run test programs.
+               (From Philipp Thomas <pthomas@suse.de>)
+
 2002-02-25  Theodore Tso  <tytso@mit.edu>
 
        * ext2_fs.h: Add structure definitions for the directory indexing
index 54dc160a39fd68107238f9eb36214236f79f8bcb..6297abff07a5201ba9533bd149702a5ecb6045cc 100644 (file)
@@ -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) \
index aaa87baa518f251bcecdc22e82a28620f42f8546..1a0093a289d1885a980cdf4da180f7846f2e558c 100644 (file)
@@ -1,3 +1,8 @@
+2002-03-07  Theodore Tso  <tytso@mit.edu>
+
+       * Makefile.in (check): Use LD_LIBRARY_PATH to run test programs.
+               (From Philipp Thomas <pthomas@suse.de>)
+
 2002-02-24  Theodore Tso  <tytso@mit.edu>
 
        * Makefile.in (install): Remove any compressed man pages before
index 6a2668f1db6cdd0ca73aa6a45accb242db73dc8d..20c747ce2bdb7e2c97e71bcfdcbf21d73c436d1f 100644 (file)
@@ -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 \