summaryrefslogtreecommitdiff
path: root/mk/os.mk
diff options
context:
space:
mode:
Diffstat (limited to 'mk/os.mk')
-rw-r--r--mk/os.mk3
1 files changed, 0 insertions, 3 deletions
diff --git a/mk/os.mk b/mk/os.mk
index e4f3c76..f49ed6c 100644
--- a/mk/os.mk
+++ b/mk/os.mk
@@ -13,9 +13,6 @@ _SUBOS_SH= case `uname -s` in \
_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
_DEF_SH= case `uname -s` in Linux) echo "-D_BSD_SOURCE -D_XOPEN_SOURCE=600";; *) echo;; esac