blob: c19b778045c8679e9eb47e08c3ddb41ee7982620 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
## -*- autoconf -*-
dnl set the dmake root
AC_DEFUN([AC_SET_DMAKEROOT],
[
if test "${prefix}" != NONE; then
DMAKEROOT=${prefix}/share/startup/startup.mk
export DMAKEROOT
else
DMAKEROOT=startup.mk
export DMAKEROOT
fi
])
|