From 451dc18f109e4fff1a642976fee7ae7e64af35dc Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 13 Jun 2002 20:42:35 +0000 Subject: Add support for DJGPP. PR: 75 --- test/tx509 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'test/tx509') diff --git a/test/tx509 b/test/tx509 index 35169f3a43..d380963abc 100644 --- a/test/tx509 +++ b/test/tx509 @@ -1,6 +1,10 @@ #!/bin/sh -PATH=../apps:$PATH +if test "$OSTYPE" = msdosdjgpp; then + PATH=../apps\;$PATH +else + PATH=../apps:$PATH +fi export PATH cmd='../apps/openssl x509' -- cgit v1.2.3