From: SourceForge.net <no...@so...> - 2007-10-30 16:53:40
|
Bugs item #1822887, was opened at 2007-10-30 17:53 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=118378&aid=1822887&group_id=18378 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Jukka Salmi (jukka) Assigned to: Nobody/Anonymous (nobody) Summary: libticonv/install-sh executed directly Initial Comment: Running `make install' for libticonv fails if install-sh is not executable. And the executable bit on that file is not guaranteed to be set after svn checkout / update IIUC. The problem is how mkdir_p is set in the top level Makefile; on my system, it ends up being set to `$(top_builddir)/./install-sh -c -d', and this causes the failure: $ make install Making install in build/mingw Making install in src test -z "/tmp/local/lib" || .././install-sh -c -d "/tmp/local/lib" sh: .././install-sh: permission denied *** Error code 126 Stop. make: stopped in /usr/local/src/tilp2/libticonv/src *** Error code 1 I don't speak autoconf, thus I can't provide a patch, but it seems to me that mkdir_p shoud end up being set to `$(SHELL) (top_builddir)/./install-sh -c -d' instead. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=118378&aid=1822887&group_id=18378 |