diff options
| author | Stephen J. Kiernan <stevek@FreeBSD.org> | 2026-05-03 19:35:22 +0000 |
|---|---|---|
| committer | Stephen J. Kiernan <stevek@FreeBSD.org> | 2026-05-03 19:39:50 +0000 |
| commit | b89155be25a7f501980a165e225b28abd886c1e5 (patch) | |
| tree | fd2e489b78937af42154e4b41183a4232bdd1617 | |
| parent | 9d423705db8b4188ed7c02d31b93393f0f8e680e (diff) | |
bsd.endian.mk: Avoid use of M_ListToSkip
While the src build works fine with M_ListToSkip, it can break the
ports build. For now, it is safer just to do the actual variable
modifiers in place.
Reported by: se
Fixes: 01674e15dedb ("bsd.endian.mk: Optimize the handling...")
| -rw-r--r-- | share/mk/bsd.endian.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/mk/bsd.endian.mk b/share/mk/bsd.endian.mk index 2a617a1d2794..b990172c7792 100644 --- a/share/mk/bsd.endian.mk +++ b/share/mk/bsd.endian.mk @@ -12,7 +12,7 @@ MACHINE_ARCH_LIST.big = \ powerpc64 .for e in big little -N_$e:= ${MACHINE_ARCH_LIST.$e:${M_ListToSkip}} +N_$e:= ${MACHINE_ARCH_LIST.$e:@m@N$m@:ts:} .endfor # For the host, we need to look at the host architecture |
