blob: c8d161270f48d6b3c7abc0ea1ab8ea4cb2819024 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- lib/perl/Makefile.in.orig 2020-05-07 06:07:06.047917129 -0700
+++ lib/perl/Makefile.in 2020-05-07 06:13:04.444045176 -0700
@@ -682,16 +682,16 @@
all-local: Makefile-pl
- $(MAKE) -f Makefile-pl INSTALLDIRS=$(INSTALLDIRS) PREFIX=$(prefix) DESTDIR=$(DESTDIR)
+ $(MAKE) -f Makefile-pl INSTALLDIRS=vendor
install-exec-local: Makefile-pl
- $(MAKE) -f Makefile-pl INSTALLMAN3DIR=$(mandir)/man3 INSTALLDIRS=$(INSTALLDIRS) PREFIX=$(prefix) DESTDIR=$(DESTDIR) install
+ $(MAKE) -f Makefile-pl INSTALLDIRS=vendor
# The perl build needs to have the source files in the current working directory, so we need to
# copy them to the build directory if we are building out of tree.
Makefile-pl: Makefile.PL $(top_builddir)/config.status
test -f "$(top_builddir)/$(subdir)/Makefile.PL" || cp -rf "$(srcdir)/." "$(top_builddir)/$(subdir)/"
- $(PERL) Makefile.PL INSTALLDIRS=$(INSTALLDIRS) INSTALL_BASE=$(prefix) PREFIX=
+ $(PERL) Makefile.PL INSTALLDIRS=vendor
clean-local:
-rm -f Makefile-pl
|