Removed Solaris customization. This OS is dead.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Tue, 01 Jun 2021 17:47:00 +0300
changeset 979 2485d7292a73
parent 978 8f0e780cabcf
child 980 9f36844d6441
Removed Solaris customization. This OS is dead.
.env.bash
Makefile
--- a/.env.bash	Tue Jun 01 17:45:24 2021 +0300
+++ b/.env.bash	Tue Jun 01 17:47:00 2021 +0300
@@ -38,9 +38,6 @@
 if [[ ! :$PATH: =~ :$HOME/.local/bin: ]]; then
   export PATH=$PATH:$HOME/.local/bin
 fi
-if [[ $OSTYPE = solaris*  &&  ! :$PATH: =~ :/opt/csw/bin: ]]; then
-  export PATH=$PATH:/opt/csw/bin
-fi
 
 
 [[ -z $LD_LIBRARY_PATH ]] && LD_LIBRARY_PATH=$HOME/usr/lib
--- a/Makefile	Tue Jun 01 17:45:24 2021 +0300
+++ b/Makefile	Tue Jun 01 17:47:00 2021 +0300
@@ -40,17 +40,11 @@
 ifneq '' '$(filter CYGWIN%,$(uname-s))'
   host_os = cygwin
 endif
-ifeq 'SunOS' '$(uname-s)'
-  host_os = solaris
-endif
 
 ################################################################
 # Build tool definition/switches.
 
 INSTALL_DATA := install -m 640 -D
-ifeq '$(host_os)' 'solaris'
-  INSTALL_DATA := ginstall -m 640 -D
-endif
 
 RST2HTML = rst2html
 ifeq '$(host_os)' 'cygwin'