diff options
author | 2020-06-28 17:12:31 +0100 | |
---|---|---|
committer | 2020-06-28 17:15:16 +0100 | |
commit | 3e6dd877f8a1b5a52da35813ba9518f698d26560 (patch) | |
tree | d1256482df767a3479916af0e7e98c737b0370d6 /dev-lang/nasm/files | |
parent | dev-perl/Convert-ASCII-Armour: -r bump for EAPI7 (diff) | |
download | gentoo-3e6dd877f8a1b5a52da35813ba9518f698d26560.tar.gz gentoo-3e6dd877f8a1b5a52da35813ba9518f698d26560.tar.bz2 gentoo-3e6dd877f8a1b5a52da35813ba9518f698d26560.zip |
dev-lang/nasm: bump up to 2.15
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-lang/nasm/files')
-rw-r--r-- | dev-lang/nasm/files/nasm-2.15-bsd-cp-doc.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dev-lang/nasm/files/nasm-2.15-bsd-cp-doc.patch b/dev-lang/nasm/files/nasm-2.15-bsd-cp-doc.patch new file mode 100644 index 000000000000..5c7f6cfafea1 --- /dev/null +++ b/dev-lang/nasm/files/nasm-2.15-bsd-cp-doc.patch @@ -0,0 +1,13 @@ +Avoid 'cp -u' as it's not portable. + +In this case we can unconditionally copy files. + +Reported-by: Michał Górny +Bug: https://bugs.gentoo.org/655444 +--- a/doc/Makefile.in ++++ b/doc/Makefile.in +@@ -28,3 +28,3 @@ RM_RF = rm -rf + CP_F = cp -f +-CP_UF = cp -uf ++CP_UF = cp -f + |