Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 02 Jun 2025 14:45:59 +0200
From:      =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= <des@FreeBSD.org>
To:        current@freebsd.org
Cc:        mm@freebsd.org
Subject:   Re: "duplicate script" warning during installworld?
Message-ID:  <86plfml3aw.fsf@ltc.des.dev>
In-Reply-To: <aD2ThqM-sgVclHgl@albert.catwhisker.org> (David Wolfskill's message of "Mon, 2 Jun 2025 05:05:26 -0700")
References:  <aD2ThqM-sgVclHgl@albert.catwhisker.org>

index | next in thread | previous in thread | raw e-mail

David Wolfskill <david@catwhisker.org> writes:
> make[6]: /usr/src/share/mk/bsd.files.mk:119: warning: duplicate script
> for target "_testsFILESINS_test_read_format_7zip_lzma2_powerpc.7z.uu"
> ignored
> make[6]: /usr/src/share/mk/bsd.files.mk:119: warning: using previous
> script for "_testsFILESINS_test_read_format_7zip_lzma2_powerpc.7z.uu"
> defined here

The bug was introduced yesterday with the libarchive upgrade
(2e113ef82465), in lib/libarchive/tests/Makefile:

@@ -476,16 +490,24 @@ ${PACKAGE}FILES+= test_read_format_7zip_lzma1_lzma2.7z.uu
 ${PACKAGE}FILES+=      test_read_format_7zip_lzma2.7z.uu
 ${PACKAGE}FILES+=      test_read_format_7zip_lzma2_arm.7z.uu
 ${PACKAGE}FILES+=      test_read_format_7zip_lzma2_arm64.7z.uu
+${PACKAGE}FILES+=      test_read_format_7zip_lzma2_powerpc.7z.uu
+${PACKAGE}FILES+=      test_read_format_7zip_lzma2_riscv.7z.uu
+${PACKAGE}FILES+=      test_read_format_7zip_lzma2_sparc.7z.uu
+${PACKAGE}FILES+=      test_read_format_7zip_lzma2_powerpc.7z.uu
 ${PACKAGE}FILES+=      test_read_format_7zip_malformed.7z.uu
 ${PACKAGE}FILES+=      test_read_format_7zip_malformed2.7z.uu
 ${PACKAGE}FILES+=      test_read_format_7zip_packinfo_digests.7z.uu

The first and fourth added lines in this hunk are identical.  I believe
the fourth can safely be removed.

DES
-- 
Dag-Erling Smørgrav - des@FreeBSD.org


help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?86plfml3aw.fsf>