aboutsummaryrefslogtreecommitdiffstats
path: root/mkdep
diff options
context:
space:
mode:
Diffstat (limited to 'mkdep')
-rwxr-xr-xmkdep5
1 files changed, 3 insertions, 2 deletions
diff --git a/mkdep b/mkdep
index 3f30b51ac..9d15f1e75 100755
--- a/mkdep
+++ b/mkdep
@@ -1,4 +1,4 @@
-#!/bin/bash -
+#!/bin/sh -
#
# $OpenBSD: mkdep.gcc.sh,v 1.8 1998/09/02 06:40:07 deraadt Exp $
# $NetBSD: mkdep.gcc.sh,v 1.9 1994/12/23 07:34:59 jtc Exp $
@@ -73,7 +73,8 @@ TMP=$DTMP/mkdep
um=`umask`
umask 022
-if ! mkdir $DTMP ; then
+mkdir $DTMP
+if [ $? != 0 ] ; then
echo failed to create tmp dir $DTMP
exit 1
fi