Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 47754 - app-misc/gentoo-0.11.47 build fails in install
Summary: app-misc/gentoo-0.11.47 build fails in install
Status: RESOLVED UPSTREAM
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Desktop Misc. Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-04-13 14:16 UTC by Derk W te Bokkel
Modified: 2004-04-27 09:41 UTC (History)
2 users (show)

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 Derk W te Bokkel 2004-04-13 14:16:55 UTC
icons/targa2.xpm'
 /bin/install -c -m 644 'tex.xpm' '/mnt/bigdisk1/tmp/portage/gentoo-0.11.47/image//usr/share/gentoo/icons/tex.xpm'
 /bin/install -c -m 644 'tiff.xpm' '/mnt/bigdisk1/tmp/portage/gentoo-0.11.47/image//usr/share/gentoo/icons/tiff.xpm'
 /bin/install -c -m 644 'tiff2.xpm' '/mnt/bigdisk1/tmp/portage/gentoo-0.11.47/image//usr/share/gentoo/icons/tiff2.xpm'
 /bin/install -c -m 644 'txt.xpm' '/mnt/bigdisk1/tmp/portage/gentoo-0.11.47/image//usr/share/gentoo/icons/txt.xpm'
 /bin/install -c -m 644 'wav.xpm' '/mnt/bigdisk1/tmp/portage/gentoo-0.11.47/image//usr/share/gentoo/icons/wav.xpm'
 /bin/install -c -m 644 'xbm.xpm' '/mnt/bigdisk1/tmp/portage/gentoo-0.11.47/image//usr/share/gentoo/icons/xbm.xpm'
 /bin/install -c -m 644 'xbm2.xpm' '/mnt/bigdisk1/tmp/portage/gentoo-0.11.47/image//usr/share/gentoo/icons/xbm2.xpm'
 /bin/install -c -m 644 'xcf.xpm' '/mnt/bigdisk1/tmp/portage/gentoo-0.11.47/image//usr/share/gentoo/icons/xcf.xpm'
 /bin/install -c -m 644 'xpm.xpm' '/mnt/bigdisk1/tmp/portage/gentoo-0.11.47/image//usr/share/gentoo/icons/xpm.xpm'
 /bin/install -c -m 644 'xpm2.xpm' '/mnt/bigdisk1/tmp/portage/gentoo-0.11.47/image//usr/share/gentoo/icons/xpm2.xpm'
make[2]: Leaving directory `/mnt/bigdisk1/tmp/portage/gentoo-0.11.47/work/gentoo-0.11.47/icons'
make[1]: Leaving directory `/mnt/bigdisk1/tmp/portage/gentoo-0.11.47/work/gentoo-0.11.47/icons'
Making install in po
make[1]: Entering directory `/mnt/bigdisk1/tmp/portage/gentoo-0.11.47/work/gentoo-0.11.47/po'
/bin/sh `case ".././mkinstalldirs" in /*) echo ".././mkinstalldirs" ;; *) echo "../.././mkinstalldirs" ;; esac` /mnt/bigdisk1/tmp/portage/gentoo-0.11.47/image//usr/share
../.././mkinstalldirs: ../.././mkinstalldirs: No such file or directory
make[1]: *** [install-data-yes] Error 127
make[1]: Leaving directory `/mnt/bigdisk1/tmp/portage/gentoo-0.11.47/work/gentoo-0.11.47/po'
make: *** [install-recursive] Error 1

!!! ERROR: app-misc/gentoo-0.11.47 failed.
!!! Function einstall, Line 388, Exitcode 2
!!! einstall failed
Comment 1 Derk W te Bokkel 2004-04-13 16:47:42 UTC
looks like a namespace collision in the Makefile in directory po

mkinstalldir is used to define itself ..

MKINSTALLDIRS = $(top_builddir)/./mkinstalldirs
mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac`
Comment 2 Derk W te Bokkel 2004-04-14 13:18:32 UTC
FYI same problem will appear in the 'intl' directory as well .. similar script

 
Comment 3 Derk W te Bokkel 2004-04-14 14:45:16 UTC
okay near as I can make out the defn for mkinstalldirs is incorrect

I found that adding the following two lines to the po directory Makefile seems to work: (same should be done in intl directory)

mkdir_p = mkdir -p -- .
mkinstalldirs = $(mkdir_p)

comment out the existing mkinstalldirs line as well
Comment 4 Jason Wever (RETIRED) gentoo-dev 2004-04-15 08:42:57 UTC
Note this only happens with the NLS useflag enabled.
Comment 5 Ian Truelsen 2004-04-15 09:16:58 UTC
USE="-nls" works. Not really a solution, but a work around for those of us that don't need it.
Comment 6 Brandon Hale (RETIRED) gentoo-dev 2004-04-27 09:41:45 UTC
Bug in upstream makefile for NLS builds.