mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
16 lines
328 B
Bash
16 lines
328 B
Bash
|
|||
# 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
|