JC Wong wrote:Making install in po make[1]: Entering directory `/home/catalyst/CVS/e16/e/po' /bin/sh `case ".././mkinstalldirs" in /*) echo ".././mkinstalldirs" ;; *) echo "../.././mkinstalldirs" ;; esac` /usr/share ../.././mkinstalldirs: ../.././mkinstalldirs: No such file or directory make[1]: *** [install-data-yes] Error 127 make[1]: Leaving directory `/home/catalyst/CVS/e16/e/po' make: *** [install-recursive] Error 1
This problem started bugging me when I updated from RH9 to FC1 (i.e. gettext 0.11.4 -> 0.12.1). It turns out that autogen.sh -> setup-gettext.sh -> autopoint --force makes po/Makefile.in.in which contains
mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac`
Changing that into
mkinstalldirs = $(SHELL) $(MKINSTALLDIRS)
makes things work. This is obviously a stupid hack. Does anybody have a proper solution?
/Kim
------------------------------------------------------- This SF.net email is sponsored by: IBM Linux Tutorials. Become an expert in LINUX or just sharpen your skills. Sign up for IBM's Free Linux Tutorials. Learn everything from the bash shell to sys admin. Click now! http://ads.osdn.com/?ad_id=1278&alloc_id=3371&op=click _______________________________________________ enlightenment-devel mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
