diff options
author | rene <rene@FreeBSD.org> | 2014-01-17 21:20:09 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2014-01-17 21:20:09 +0800 |
commit | ae6a607a01d536ceed2d33fb1077ab69d394b45a (patch) | |
tree | 89f34b9b52574e0b73157015601203876bd0bda1 /Mk | |
parent | 1e0664137265c3f4709c0a54af729161917a43ce (diff) | |
download | freebsd-ports-gnome-ae6a607a01d536ceed2d33fb1077ab69d394b45a.tar.gz freebsd-ports-gnome-ae6a607a01d536ceed2d33fb1077ab69d394b45a.tar.zst freebsd-ports-gnome-ae6a607a01d536ceed2d33fb1077ab69d394b45a.zip |
- Remove a check insisting that Fedora 10 ports can only be run when
compat.linux.osrelease is set to 2.6.16. This enables running newer
libc versions wanting e.g. Linux 3.4.X. It was mostly a leftover
from the Fedora Core 4 support in the FreeBSD 7.X days. [1]
- While here shorten the IGNORE message of another check.
Submitted by: cognet [1]
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.linux-rpm.mk | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/Mk/bsd.linux-rpm.mk b/Mk/bsd.linux-rpm.mk index 45d12133a13a..423ee81eede0 100644 --- a/Mk/bsd.linux-rpm.mk +++ b/Mk/bsd.linux-rpm.mk @@ -60,18 +60,9 @@ LINUX_DIST?= fedora LINUX_DIST_VER?= 10 . if !defined(OVERRIDE_LINUX_NONBASE_PORTS) && \ ${LINUX_DIST_VER} != 10 -IGNORE= bsd.linux-rpm.mk test failed: default package building at OSVERSION>=800076 was changed to linux-f10 ports, please define OVERRIDE_LINUX_NONBASE_PORTS to build other linux infrastructure ports +IGNORE= bsd.linux-rpm.mk test failed: package building defaults to linux-f10 ports, please define OVERRIDE_LINUX_NONBASE_PORTS to build other linux infrastructure ports . endif -# linux Fedora 10 infrastructure ports should be used with compat.linux.osrelease=2.6.16, -# linux_base-f10 (or greater) port -. if ${LINUX_DIST_VER} == 10 -# let's check for apropriate compat.linux.osrelease -. if (${LINUX_OSRELEASE} != "2.6.16") -IGNORE= bsd.linux-rpm.mk test failed: the port should be used with compat.linux.osrelease=2.6.16, which is supported by FreeBSD 8 and above -. endif -. endif - . if defined(LINUX_DIST) DIST_SUBDIR?= rpm/${LINUX_RPM_ARCH}/${LINUX_DIST}/${LINUX_DIST_VER} |