aboutsummaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2019-03-31 00:49:57 -0700
committerAndrew Waterman <andrew@sifive.com>2019-03-31 00:50:15 -0700
commitf49618ca9d674ec7e596118f85027c4b503862ac (patch)
tree3b6ad73cbe8760309f930b743950a2853ad17668 /aclocal.m4
parent61cb96df00067ba61cf3816c74c18aef5677197a (diff)
downloadriscv-isa-sim-f49618ca9d674ec7e596118f85027c4b503862ac.zip
riscv-isa-sim-f49618ca9d674ec7e596118f85027c4b503862ac.tar.gz
riscv-isa-sim-f49618ca9d674ec7e596118f85027c4b503862ac.tar.bz2
Add fesvr; only globally install fesvr headers/libsstatic-link
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}])
- ])
-
- ])
-
- ])
-
])
#-------------------------------------------------------------------------