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
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`
FYI same problem will appear in the 'intl' directory as well .. similar script
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
Note this only happens with the NLS useflag enabled.
USE="-nls" works. Not really a solution, but a work around for those of us that don't need it.
Bug in upstream makefile for NLS builds.