Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 1229 - bug in makefile.in.in of console-tools-0.2.3-r4
Summary: bug in makefile.in.in of console-tools-0.2.3-r4
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Daniel Robbins (RETIRED)
URL: http://www.schooljan.myweb.nl
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-03-18 17:55 UTC by Henno Schooljan
Modified: 2003-02-04 19:42 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Henno Schooljan 2002-03-18 17:55:33 UTC
I saw a diff file.. maybe this is related to my other bug report 1225 I posted?

---- dump of file /usr/portage/sys-apps/console-tools/files/console-tools-0.2.3-
po-Makefile.in.in-gentoo.diff --------




--- po/Makefile.in.in~  Sun Mar  7 17:41:28 1999
+++ po/Makefile.in.in   Tue Feb 27 15:34:04 2001
@@ -111,9 +111,9 @@
 install-data-no: all
 install-data-yes: all
        if test -r "$(MKINSTALLDIRS)"; then \
-         $(MKINSTALLDIRS) $(datadir); \
+         $(MKINSTALLDIRS) $(DESTDIR)$(datadir); \
        else \
-         $(SHELL) $(top_srcdir)/mkinstalldirs $(datadir); \
+         $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(datadir); \
        fi
        @catalogs='$(CATALOGS)'; \
        for cat in $$catalogs; do \
@@ -123,7 +123,7 @@
            *)     destdir=$(localedir);; \
          esac; \
          lang=`echo $$cat | sed 's/\$(CATOBJEXT)$$//'`; \
-         dir=$$destdir/$$lang/LC_MESSAGES; \
+         dir=$(DESTDIR)$$destdir/$$lang/LC_MESSAGES; \
          if test -r "$(MKINSTALLDIRS)"; then \
            $(MKINSTALLDIRS) $$dir; \
          else \
@@ -153,12 +153,12 @@
        done
        if test "$(PACKAGE)" = "gettext"; then \
          if test -r "$(MKINSTALLDIRS)"; then \
-           $(MKINSTALLDIRS) $(gettextsrcdir); \
+           $(MKINSTALLDIRS) $(DESTDIR)$(gettextsrcdir); \
          else \
-           $(SHELL) $(top_srcdir)/mkinstalldirs $(gettextsrcdir); \
+           $(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(gettextsrcdir); \
          fi; \
          $(INSTALL_DATA) $(srcdir)/Makefile.in.in \
-                         $(gettextsrcdir)/Makefile.in.in; \
+                         $(DETSDIR)$(gettextsrcdir)/Makefile.in.in; \
        else \
          : ; \
        fi


----- end of dump ------

I'm concerned about DETSDIR in the almost last line above... that should be 
DESTDIR right? Is that the cause of the autoconf error displayed in bug report 
1225?
Comment 1 Daniel Robbins (RETIRED) gentoo-dev 2002-03-18 21:22:44 UTC
console-tools has been recently replaced by the "kbd" package.  marking as
"WONTFIX".