diff options
author | Roy Marples <roy@marples.name> | 2008-01-10 19:50:01 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-10 19:50:01 +0000 |
commit | 22b7a12b6e1f55f536b9004dd78ab67e88deaf6a (patch) | |
tree | 8fa6f0018b073dd6faf31d6c48608386eb1baeab /mk/os.mk | |
parent | 6244bcbe84aad1e1f62c063bfc47c76c6ebb66b4 (diff) |
Fix SUBOS_SH
Diffstat (limited to 'mk/os.mk')
-rw-r--r-- | mk/os.mk | 22 |
1 files changed, 11 insertions, 11 deletions
@@ -2,21 +2,21 @@ # Generic definitions -_OS_SH_= uname -s -_OS!= ${_OS_SH} -OS?= ${_OS}$(shell ${_OS_SH}) +_OS_SH= uname -s +_OS!= ${_OS_SH} +OS?= ${_OS}$(shell ${_OS_SH}) -_SUBOS_SH= case `uname -s` in \ - *BSD|DragonFly) echo "BSD";; \ - *) uname -s;; \ - esac -_SUBOS!= ${_SUBOS_SH} +_SUBOS_SH= case `uname -s` in \ + *BSD|DragonFly) echo "BSD";; \ + *) uname -s;; \ + esac +_SUBOS!= ${_SUBOS_SH} SUBOS?= ${_SUBOS}$(shell ${_SUBOS_SH}) _LIBNAME_SH= l=`readlink /lib`; case "$$l" in /lib64|lib64) echo "lib64";; *) echo "lib";; esac -_LIBNAME!= ${_LIBNAME_SH} -LIBNAME?= ${_LIBNAME}$(shell ${_LIBNAME_SH}) -RC_LIB= /$(LIBNAME)/rc +_LIBNAME!= ${_LIBNAME_SH} +LIBNAME?= ${_LIBNAME}$(shell ${_LIBNAME_SH}) +RC_LIB= /$(LIBNAME)/rc _DEF_SH= case `uname -s` in Linux) echo "-D_XOPEN_SOURCE=600 -D_BSD_SOURCE";; *) echo;; esac _DEF!= ${_DEF_SH} |