Only build/install xbps-uchroot(8) on linux.

This commit is contained in:
Juan RP 2014-08-23 09:06:46 +02:00
parent 1d2dabca09
commit 74b3cb0e64
3 changed files with 8 additions and 1 deletions

3
NEWS
View File

@ -1,5 +1,8 @@
xbps-0.38 (???):
* xbps-uchroot(8) is now only built on linux, because it's not portable to other
Operating Systems.
* Added support to replace virtual packages when the package to be installed
matches a virtual pkgname, for example:

View File

@ -9,7 +9,10 @@ SUBDIRS += xbps-reconfigure
SUBDIRS += xbps-remove
SUBDIRS += xbps-rindex
SUBDIRS += xbps-uhelper
SUBDIRS += xbps-uchroot
SUBDIRS += xbps-checkvers
ifeq (${XBPS_OS},linux)
SUBDIRS += xbps-uchroot
endif
include ../mk/subdir.mk

1
configure vendored
View File

@ -140,6 +140,7 @@ echo "Configuring xbps for ... $OS"
rm -f $CONFIG_MK
echo "# Common vars used by XBPS on $OS." >$CONFIG_MK
echo "XBPS_OS = $OS" >>$CONFIG_MK
echo "VERSION = $VERSION" >>$CONFIG_MK
echo "TOPDIR ?= $TOPDIR" >>$CONFIG_MK
echo "PREFIX ?= $PREFIX" >>$CONFIG_MK