diff options
Diffstat (limited to 'finance/cbb/files/patch-perl_Makefile.in')
-rw-r--r-- | finance/cbb/files/patch-perl_Makefile.in | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/finance/cbb/files/patch-perl_Makefile.in b/finance/cbb/files/patch-perl_Makefile.in deleted file mode 100644 index 5d1203429ae1..000000000000 --- a/finance/cbb/files/patch-perl_Makefile.in +++ /dev/null @@ -1,37 +0,0 @@ ---- perl/Makefile.in.orig 2014-02-17 17:06:57.000000000 +0100 -+++ perl/Makefile.in 2014-02-17 17:07:25.000000000 +0100 -@@ -32,7 +32,7 @@ - includedir = @includedir@ - oldincludedir = /usr/include - --DISTDIR = -+DISTDIR = ${STAGEDIR} - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -174,19 +174,19 @@ - # Create install directories - make-dirs: - umask 022; \ -- if test '!' -d $(CBB_BINDIR); then \ -- mkdir -p $(CBB_BINDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_BINDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_BINDIR); \ - fi; \ -- if test '!' -d $(CBB_LIBDIR); then \ -- mkdir -p $(CBB_LIBDIR); \ -+ if test '!' -d $(DISTDIR)$(CBB_LIBDIR); then \ -+ mkdir -p $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - install-exec-local: make-dirs - if test -n "$(CBB_BINFILES)"; then \ -- $(INSTALL) $(CBB_BINFILES) $(CBB_BINDIR); \ -+ $(INSTALL) $(CBB_BINFILES) $(DISTDIR)$(CBB_BINDIR); \ - fi; - if test -n "$(CBB_LIBFILES)"; then \ -- $(INSTALL) $(CBB_LIBFILES) $(CBB_LIBDIR); \ -+ $(INSTALL) $(CBB_LIBFILES) $(DISTDIR)$(CBB_LIBDIR); \ - fi; - - dist-hook: |