Revert r336572 and wrap them in machine checks so they are only installed on

i386.

Approved by:	allanjude (mentor), imp
Differential Revision:	https://reviews.freebsd.org/D16380
This commit is contained in:
Brad Davis 2018-07-21 17:13:39 +00:00
parent 55cd452396
commit 31ad99a4af
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=336581
3 changed files with 9 additions and 3 deletions

View file

@ -38,9 +38,6 @@
# xargs -n1 | sort | uniq -d;
# done
# 20180721: Purge some old forgotten apmd files
OLD_FILES+=etc/apmd.conf
OLD_FILES+=etc/rc.d/apmd
# 20180721: move of libmlx5.so.1 and libibverbs.so.1
OLD_LIBS+=usr/lib/libmlx5.so.1
OLD_LIBS+=usr/lib/libibverbs.so.1

View file

@ -76,6 +76,12 @@ BSM_ETC_DIR= ${DESTDIR}/etc/security
BIN1+= amd.map
.endif
.if ${MACHINE} == "i386"
.if ${MK_APM} != "no"
BIN1+= apmd.conf
.endif
.endif
.if ${MK_AUTOFS} != "no"
BIN1+= auto_master
.endif

View file

@ -157,6 +157,9 @@ AMDPACKAGE= amd
.if ${MK_APM} != "no"
FILESGROUPS+= APM
APM+= apm
.if ${MACHINE} == "i386"
APM+= apmd
.endif
APMPACKAGE= apm
.endif