diff options
Diffstat (limited to 'dbug/doinstall.sh')
-rw-r--r-- | dbug/doinstall.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dbug/doinstall.sh b/dbug/doinstall.sh new file mode 100644 index 00000000000..707f193c761 --- /dev/null +++ b/dbug/doinstall.sh @@ -0,0 +1,15 @@ + +# Warning - first line left blank for sh/csh/ksh compatibility. Do not +# remove it. fnf@Unisoft + +# doinstall.sh --- figure out environment and do recursive make with +# appropriate pathnames. Works under SV or BSD. + +if [ -r /usr/include/search.h ] +then + # System V + $* LLIB=/usr/lib +else + # 4.2 BSD + $* LLIB=/usr/lib/lint +fi |