summaryrefslogtreecommitdiffstats
path: root/test/tx509
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-06-13 20:42:35 +0000
committerRichard Levitte <levitte@openssl.org>2002-06-13 20:42:35 +0000
commit451dc18f109e4fff1a642976fee7ae7e64af35dc (patch)
treec4728b949d7511ed666c9f0ef65ec8e7c8957581 /test/tx509
parent127dca46a07850204f1432ec6998923eebc341b1 (diff)
Add support for DJGPP.
PR: 75
Diffstat (limited to 'test/tx509')
-rw-r--r--test/tx5096
1 files changed, 5 insertions, 1 deletions
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'