aboutsummaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2019-03-31 00:49:57 -0700
committerChih-Min Chao <chihmin.chao@sifive.com>2019-05-14 01:50:01 -0700
commit7ac569476e8759d59e0698086bf1493154387bc0 (patch)
tree9cb1cf51f81daf1b1497c583783675d51cc3c86a /aclocal.m4
parentc611cda2198ada65aae4c1ca6fd8a1d8f3cb0821 (diff)
downloadspike-7ac569476e8759d59e0698086bf1493154387bc0.zip
spike-7ac569476e8759d59e0698086bf1493154387bc0.tar.gz
spike-7ac569476e8759d59e0698086bf1493154387bc0.tar.bz2
Add fesvr; only globally install fesvr headers/libs
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m443
1 files changed, 0 insertions, 43 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 15353f2..def74db 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -59,49 +59,6 @@ AC_DEFUN([MCPPBS_PROG_INSTALL],
# Check for install script
AC_PROG_INSTALL
-
- # Deterimine if native build and set prefix appropriately
-
- AS_IF([ test ${enable_stow} = "yes" ],
- [
- AC_CHECK_PROGS([stow],[stow],[no])
- AS_IF([ test ${stow} = "no" ],
- [
- AC_MSG_ERROR([Cannot use --enable-stow since stow is not available])
- ])
-
- # Check if native or non-native build
-
- AS_IF([ test "${build}" = "${host}" ],
- [
-
- # build == host so this is a native build. Make sure --prefix not
- # set and $STOW_PREFIX is set, then set prefix=$STOW_PREFIX.
-
- AS_IF([ test "${prefix}" = "NONE" && test -n "${STOW_PREFIX}" ],
- [
- prefix="${STOW_PREFIX}"
- AC_MSG_NOTICE([Using \$STOW_PREFIX from environment])
- AC_MSG_NOTICE([prefix=${prefix}])
- ])
-
- ],[
-
- # build != host so this is a non-native build. Make sure --prefix
- # not set and $STOW_ROOT is set, then set
- # prefix=$STOW_ROOT/${host_alias}.
-
- AS_IF([ test "${prefix}" = "NONE" && test -n "${STOW_ROOT}" ],
- [
- prefix="${STOW_ROOT}/${host_alias}"
- AC_MSG_NOTICE([Using \$STOW_ROOT from environment])
- AC_MSG_NOTICE([prefix=${prefix}])
- ])
-
- ])
-
- ])
-
])
#-------------------------------------------------------------------------