summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2001-11-20 17:03:24 +0000
committerEzra Peisach <epeisach@mit.edu>2001-11-20 17:03:24 +0000
commit2cdb98930f6ce1473fea44d5c5380bb0858fc6a5 (patch)
tree4de07a47cee15122eef19337aef63755d17b66d3 /src
parent9f22b59135a7d90b5f818619e46c5a390b6bbee5 (diff)
downloadkrb5-2cdb98930f6ce1473fea44d5c5380bb0858fc6a5.tar.gz
krb5-2cdb98930f6ce1473fea44d5c5380bb0858fc6a5.tar.xz
krb5-2cdb98930f6ce1473fea44d5c5380bb0858fc6a5.zip
* Makefile.in (check-unix): Use $(srcdir) in file specification
for input to t_prng. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14011 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/lib/crypto/ChangeLog5
-rw-r--r--src/lib/crypto/Makefile.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/crypto/ChangeLog b/src/lib/crypto/ChangeLog
index 4637a2f408..cb59ebd828 100644
--- a/src/lib/crypto/ChangeLog
+++ b/src/lib/crypto/ChangeLog
@@ -1,3 +1,8 @@
+2001-11-20 Ezra Peisach <epeisach@mit.edu>
+
+ * Makefile.in (check-unix): Use $(srcdir) in file specification
+ for input to t_prng.
+
2001-11-19 Sam Hartman <hartmans@mit.edu>
* Makefile.in (check-unix): Run t_prng
diff --git a/src/lib/crypto/Makefile.in b/src/lib/crypto/Makefile.in
index 092cf5f769..5528efc869 100644
--- a/src/lib/crypto/Makefile.in
+++ b/src/lib/crypto/Makefile.in
@@ -146,8 +146,8 @@ clean-unix:: clean-liblinks clean-libs clean-libobjs
check-unix:: t_nfold t_encrypt t_prng
$(RUN_SETUP) ./t_nfold
$(RUN_SETUP) ./t_encrypt
- $(RUN_SETUP) ./t_prng <t_prng.seed >t_prng.output && \
- diff t_prng.output t_prng.expected
+ $(RUN_SETUP) ./t_prng <$(srcdir)/t_prng.seed >t_prng.output && \
+ diff t_prng.output $(srcdir)/t_prng.expected
t_nfold$(EXEEXT): t_nfold.$(OBJEXT) nfold.$(OBJEXT)
$(CC_LINK) -o $@ t_nfold.$(OBJEXT) nfold.$(OBJEXT)