summaryrefslogtreecommitdiffstats
path: root/bin/sh/mkbuiltins
diff options
context:
space:
mode:
Diffstat (limited to 'bin/sh/mkbuiltins')
-rwxr-xr-xbin/sh/mkbuiltins14
1 files changed, 11 insertions, 3 deletions
diff --git a/bin/sh/mkbuiltins b/bin/sh/mkbuiltins
index 13523fa..e7f0d8d 100755
--- a/bin/sh/mkbuiltins
+++ b/bin/sh/mkbuiltins
@@ -35,14 +35,18 @@
# SUCH DAMAGE.
#
# @(#)mkbuiltins 8.1 (Berkeley) 5/31/93
-# $Id$
+# $Id: mkbuiltins,v 1.2 1994/09/24 02:57:53 davidg Exp $
temp=/tmp/ka$$
havejobs=0
if grep '^#define JOBS[ ]*1' shell.h > /dev/null
then havejobs=1
fi
-exec > obj/builtins.c
+if [ -d obj ] ; then
+ exec > obj/builtins.c
+else
+ exec > builtins.c
+fi
cat <<\!
/*
* This file was generated by the mkbuiltins program.
@@ -67,7 +71,11 @@ awk '{ for (i = 2 ; i <= NF ; i++) {
echo ' NULL, 0
};'
-exec > obj/builtins.h
+if [ -d obj ] ; then
+ exec > obj/builtins.h
+else
+ exec > builtins.h
+fi
cat <<\!
/*
* This file was generated by the mkbuiltins program.
OpenPOWER on IntegriCloud