[CM] snd-8 make install fails

Michael Scholz scholz-micha@gmx.de
Mon, 10 Apr 2006 18:45:16 +0200


> That's not something I have any control over -- the gettext people
> provide their own makefiles and configuration stuff, and they
> assume there's a copy of mkinstalldirs in ../../ (or whatever).
> There's one in the Snd tarball which can be copied wherever it
> is needed.

Orm, if you call configure with the full path, this doesn't appear
(e.g. `pwd`/configure ...).

Bill, you can safely replace in snd/po/Makefile.in.in, line 30:

  mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac`

by

  mkinstalldirs = $(SHELL) $(MKINSTALLDIRS)

This is what I found in fth/po/Makefile.in.in.  $(MKINSTALLDIRS)
contains the correct path to mkinstalldirs, so the case-esac isn't
needed.

Mike