diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-09-05 19:04:14 +0200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2020-09-13 09:09:33 +1200 |
commit | 37c280502d46fc52827866f06ec59c71391dfc98 (patch) | |
tree | 1a69ddb7866d1ac61b886fdeac67cab9fdc41bc6 /dev-lang | |
parent | dev-perl/DateTime-HiRes: remove unused patch(es) (diff) | |
download | gentoo-37c280502d46fc52827866f06ec59c71391dfc98.tar.gz gentoo-37c280502d46fc52827866f06ec59c71391dfc98.tar.bz2 gentoo-37c280502d46fc52827866f06ec59c71391dfc98.zip |
dev-lang/moarvm: remove unused patch(es)
Closes: https://github.com/gentoo/gentoo/pull/17428
Package-Manager: Portage-3.0.5, Repoman-3.0.1
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Kent Fredric <kentnl@gentoo.org>
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/moarvm/files/fix-quoting.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/dev-lang/moarvm/files/fix-quoting.patch b/dev-lang/moarvm/files/fix-quoting.patch deleted file mode 100644 index f3e02b156ab5..000000000000 --- a/dev-lang/moarvm/files/fix-quoting.patch +++ /dev/null @@ -1,28 +0,0 @@ -From f1b26bb0e8f4e0a00ac31f9defb1ed74b820eb39 Mon Sep 17 00:00:00 2001 -From: Stefan Seifert <nine@detonation.org> -Date: Mon, 15 Jul 2019 12:04:45 +0200 -Subject: [PATCH] Fix Configure.pl failing when --prefix /usr is passed - -gerd++ reported this on Github 1143 and supplied the diagnostics and -fix: -If the prefix is exact /usr, then it seems that in build/Makefile.in -@moardll@: $(OBJECTS) $(THIRDPARTY) - $(MSG) linking $@ - $(CMD)$(LD) @ldout@$@ $(LDFLAGS) @ldshared@ @moarshared@ $(OBJECTS) $(DLL_LIBS) -moarshared will not be substituted or is wrong. ---- - Configure.pl | 1 + - 1 file changed, 1 insertion(+) - -diff --git a/Configure.pl b/Configure.pl -index b71b576be..753dcfaac 100755 ---- a/Configure.pl -+++ b/Configure.pl -@@ -441,6 +441,7 @@ sub uniq { - push @ldflags, $ENV{LDFLAGS} if $ENV{LDFLAGS}; - $config{ldflags} = join ' ', @ldflags; - -+$config{moarshared} = ''; - # Switch shared lib compiler flags in relocatable case. - if (not $args{static} and $config{prefix} ne '/usr') { - $config{moarshared} = $config{moarshared_relocatable} if $args{relocatable}; |