aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1995-03-30 19:45:20 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1995-03-30 19:45:20 +0000
commit295a3379fedf23242c1c4e0ff64b8256fa8870ed (patch)
tree557005cc3095588740cafd361ffbade78a411346 /bin
parent7685716d64107ed2a370207a69ad6ab9743257d9 (diff)
Notes
Diffstat (limited to 'bin')
-rwxr-xr-xbin/sh/mkbuiltins14
1 files changed, 11 insertions, 3 deletions
diff --git a/bin/sh/mkbuiltins b/bin/sh/mkbuiltins
index 13523fa4ab060..e7f0d8dbbdf23 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.