From: <sv...@op...> - 2025-02-16 10:58:08
|
Author: manx Date: Sun Feb 16 11:57:56 2025 New Revision: 22950 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=22950 Log: [Fix] build: Makefile: Do not use PAX tar format for compatibility with OpenBSD 7.5 and 7.4. [Fix] build: Autotools: Do not use PAX tar format for compatibility with OpenBSD 7.5 and 7.4. Modified: trunk/OpenMPT/Makefile trunk/OpenMPT/build/autotools/autoconfiscate.sh Modified: trunk/OpenMPT/Makefile ============================================================================== --- trunk/OpenMPT/Makefile Sun Feb 16 09:56:45 2025 (r22949) +++ trunk/OpenMPT/Makefile Sun Feb 16 11:57:56 2025 (r22950) @@ -378,7 +378,8 @@ ifeq ($(findstring Darwin,$(UNAME_S)),Darwin) TAR_C=tar -c --format pax -f else ifeq ($(findstring OpenBSD,$(UNAME_S)),OpenBSD) -TAR_C=tar -c -F pax -N +#TAR_C=tar -c -F pax -N +TAR_C=tar -c -N else ifeq ($(findstring BSD,$(UNAME_S)),BSD) TAR_C=tar -c --format pax --numeric-owner --uname "" --gname "" --uid 0 --gid 0 else Modified: trunk/OpenMPT/build/autotools/autoconfiscate.sh ============================================================================== --- trunk/OpenMPT/build/autotools/autoconfiscate.sh Sun Feb 16 09:56:45 2025 (r22949) +++ trunk/OpenMPT/build/autotools/autoconfiscate.sh Sun Feb 16 11:57:56 2025 (r22950) @@ -297,7 +297,8 @@ tar -cv --format pax -f ../dist-autotools.tar libopenmpt ;; bsd) - tar -cv -F pax -N -f ../dist-autotools.tar libopenmpt + #tar -cv -F pax -N -f ../dist-autotools.tar libopenmpt + tar -cv -N -f ../dist-autotools.tar libopenmpt ;; libarchive) tar -cv --format pax --numeric-owner --uname "" --gname "" --uid 0 --gid 0 -f ../dist-autotools.tar libopenmpt |