diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2023-01-30 20:07:58 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2023-02-01 02:13:15 +0100 |
commit | 7fd31f24b627a3d9d67b078ade3fdcda63c335a3 (patch) | |
tree | 643961c57db69e54a5399fc3bc7413588035857b /app-admin/apache-tools | |
parent | app-editors/vim-core: remove unused patch (diff) | |
download | gentoo-7fd31f24b627a3d9d67b078ade3fdcda63c335a3.tar.gz gentoo-7fd31f24b627a3d9d67b078ade3fdcda63c335a3.tar.bz2 gentoo-7fd31f24b627a3d9d67b078ade3fdcda63c335a3.zip |
app-admin/apache-tools: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/29344
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-admin/apache-tools')
-rw-r--r-- | app-admin/apache-tools/files/apache-tools-2.4.7-Makefile.patch | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/app-admin/apache-tools/files/apache-tools-2.4.7-Makefile.patch b/app-admin/apache-tools/files/apache-tools-2.4.7-Makefile.patch deleted file mode 100644 index b7d3c274ea48..000000000000 --- a/app-admin/apache-tools/files/apache-tools-2.4.7-Makefile.patch +++ /dev/null @@ -1,47 +0,0 @@ -https://bugs.gentoo.org/459446 - -https://raw.github.com/archlinuxcn/repo/master/apache-tools/apache-tools-Makefile.patch - ---- a/support/Makefile.in -+++ b/support/Makefile.in -@@ -1,9 +1,9 @@ - DISTCLEAN_TARGETS = apxs apachectl dbmmanage log_server_status \ -- logresolve.pl phf_abuse_log.cgi split-logfile envvars-std -+ logresolve.pl phf_abuse_log.cgi split-logfile - - CLEAN_TARGETS = suexec - --bin_PROGRAMS = htpasswd htdigest htdbm ab logresolve httxt2dbm -+bin_PROGRAMS = htpasswd htdigest htdbm ab logresolve httxt2dbm dbmmanage - sbin_PROGRAMS = htcacheclean rotatelogs $(NONPORTABLE_SUPPORT) - TARGETS = $(bin_PROGRAMS) $(sbin_PROGRAMS) - -@@ -15,26 +15,18 @@ - install: - @test -d $(DESTDIR)$(bindir) || $(MKINSTALLDIRS) $(DESTDIR)$(bindir) - @test -d $(DESTDIR)$(sbindir) || $(MKINSTALLDIRS) $(DESTDIR)$(sbindir) -- @test -d $(DESTDIR)$(libexecdir) || $(MKINSTALLDIRS) $(DESTDIR)$(libexecdir) -- @cp -p $(top_builddir)/server/httpd.exp $(DESTDIR)$(libexecdir) -- @for i in apxs dbmmanage; do \ -+ @for i in $(bin_PROGRAMS); do \ - if test -f "$(builddir)/$$i"; then \ - cp -p $$i $(DESTDIR)$(bindir); \ - chmod 755 $(DESTDIR)$(bindir)/$$i; \ - fi ; \ - done -- @for i in apachectl; do \ -+ @for i in $(sbin_PROGRAMS); do \ - if test -f "$(builddir)/$$i"; then \ - cp -p $$i $(DESTDIR)$(sbindir); \ - chmod 755 $(DESTDIR)$(sbindir)/$$i; \ - fi ; \ - done -- @if test -f "$(builddir)/envvars-std"; then \ -- cp -p envvars-std $(DESTDIR)$(sbindir); \ -- if test ! -f $(DESTDIR)$(sbindir)/envvars; then \ -- cp -p envvars-std $(DESTDIR)$(sbindir)/envvars ; \ -- fi ; \ -- fi - - htpasswd.lo: passwd_common.h - passwd_common.lo: passwd_common.h |