Allow install SCST in any location

Currently the install location of SCST is pretty much hard coded into 
the Makefiles to be /usr/local.

I am custom building a system for ZFS & SCST and I want to install in 
/usr instead of /usr/local.

Currently I am doing a “find . -name Makefile -exec sed -i 's:/usr/local:/usr:g'
{} \;” to accommodate this.

This patch fixes it.

From Sietse van Zanen <sietse@wizdom.nu>



git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@4791 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Vladislav Bolkhovitin
2013-03-08 21:25:45 +00:00
parent 9ea9eec4ef
commit 369863f015
13 changed files with 71 additions and 21 deletions
+6 -2
View File
@@ -15,6 +15,10 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
ifndef PREFIX
PREFIX=/usr/local
endif
SHELL=/bin/bash
SRCS_F = fileio.c common.c debug.c crc32.c
@@ -24,8 +28,8 @@ OBJS_F = $(SRCS_F:.c=.o)
#OBJS_C = $(SRCS_C:.c=.o)
SCST_INC_DIR := ../../scst/include
#SCST_INC_DIR := /usr/local/include/scst
INSTALL_DIR := /usr/local/bin/scst
#SCST_INC_DIR := $(PREFIX)/include/scst
INSTALL_DIR := $(PREFIX)/bin/scst
CFLAGS += -O2 -Wall -Wextra -Wno-unused-parameter -Wstrict-prototypes \
-I$(SCST_INC_DIR) -D_GNU_SOURCE -D__USE_FILE_OFFSET64 \