svn commit: r307559 - head/usr.sbin/fstyp

Ruslan Bukin br at FreeBSD.org
Tue Oct 18 12:58:19 UTC 2016


Author: br
Date: Tue Oct 18 12:58:17 2016
New Revision: 307559
URL: https://svnweb.freebsd.org/changeset/base/307559

Log:
  fstyp tests comes with pre-created EL filesystems,
  but fstyp cannot detect EL filesystem on EB machine,
  so exclude test files from distribution and skip the
  test.
  
  Sponsored by:	DARPA, AFRL
  Sponsored by:	HEIF5

Modified:
  head/usr.sbin/fstyp/Makefile

Modified: head/usr.sbin/fstyp/Makefile
==============================================================================
--- head/usr.sbin/fstyp/Makefile	Tue Oct 18 12:27:46 2016	(r307558)
+++ head/usr.sbin/fstyp/Makefile	Tue Oct 18 12:58:17 2016	(r307559)
@@ -14,8 +14,9 @@ MAN=	fstyp.8
 WARNS?=	2
 
 .include <src.opts.mk>
+.include <bsd.endian.mk>
 
-.if ${MK_TESTS} != "no"
+.if ${MK_TESTS} != "no" && ${TARGET_ENDIANNESS} == 1234
 SUBDIR+=	tests
 .endif
 


More information about the svn-src-head mailing list