diff options
Diffstat (limited to 'finance/cbb/files/patch-graphs_Makefile.in')
-rw-r--r-- | finance/cbb/files/patch-graphs_Makefile.in | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/finance/cbb/files/patch-graphs_Makefile.in b/finance/cbb/files/patch-graphs_Makefile.in deleted file mode 100644 index 3ee67c2301c5..000000000000 --- a/finance/cbb/files/patch-graphs_Makefile.in +++ /dev/null @@ -1,37 +0,0 @@ ---- graphs/Makefile.in.orig 2014-02-17 16:58:03.000000000 +0100 -+++ graphs/Makefile.in 2014-02-17 16:58:31.000000000 +0100 -@@ -32,7 +32,7 @@ - includedir = @includedir@ - oldincludedir = /usr/include - --DISTDIR = -+DISTDIR = ${STAGEDIR} - - pkgdatadir = $(datadir)/@PACKAGE@ - pkglibdir = $(libdir)/@PACKAGE@ -@@ -197,19 +197,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: |