summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorrussell <russell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-11-09 16:01:57 +0000
committerrussell <russell@5390a7c7-147a-4af0-8ec9-7488f05a26cb>2006-11-09 16:01:57 +0000
commit256f539b91a725f53a0f2150570ba09daa002dbb (patch)
treeb93b3ec09a914deac34d57ecab81f18b94d05a65 /Makefile
parent8b53cf2033fff09f8e3ac49eb3c919502109c43e (diff)
Merged revisions 1576 via svnmerge from
https://origsvn.digium.com/svn/zaptel/branches/1.4 ........ r1576 | russell | 2006-11-09 10:58:37 -0500 (Thu, 09 Nov 2006) | 3 lines fix an expression in the install target (issue #8321, tzafrir) ........ git-svn-id: http://svn.digium.com/svn/zaptel/trunk@1577 5390a7c7-147a-4af0-8ec9-7488f05a26cb
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5fd1caf..282ab08 100644
--- a/Makefile
+++ b/Makefile
@@ -408,7 +408,7 @@ install-libs: $(LTZ_SO) $(LTZ_A)
$(LIB_DIR)/$(LTZ_SO).$(LTZ_SO_MAJOR_VER)
$(LN) -sf $(LTZ_SO).$(LTZ_SO_MAJOR_VER).$(LTZ_SO_MINOR_VER) \
$(LIB_DIR)/$(LTZ_SO)
- if [ -z "$(INSTALL_PREFIX)" && -x /usr/sbin/sestatus ] && (/usr/sbin/sestatus | grep "SELinux status:" | grep -q "enabled") ; then restorecon -v $(LIB_DIR)/$(LTZ_SO); fi
+ if [ -z "$(INSTALL_PREFIX)" ] && [ -x /usr/sbin/sestatus ] && (/usr/sbin/sestatus | grep "SELinux status:" | grep -q "enabled") ; then restorecon -v $(LIB_DIR)/$(LTZ_SO); fi
install-include:
$(INSTALL) -D -m 644 zaptel.h $(INSTALL_PREFIX)/usr/include/zaptel/zaptel.h