From 080de35a0c25ed7081306a2e8d8ff439d8e62703 Mon Sep 17 00:00:00 2001 From: trevor_hansen Date: Tue, 9 Aug 2011 14:06:23 +0000 Subject: [PATCH] Improvement. Only set the install prefix if the enviroment variable is not set. git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1384 e59a4935-1847-0410-ae03-e826735625c1 --- clean-install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/clean-install.sh b/clean-install.sh index ad2dcb1..679b204 100755 --- a/clean-install.sh +++ b/clean-install.sh @@ -1,5 +1,7 @@ #!/bin/sh -PREFIX=$HOME +if [ "$PREFIX" == "" ]; then + PREFIX=$HOME +fi make configclean . scripts/configure -- 2.47.3