2009/7/15 Juergen Beisert <[email protected]>: > For the records: My fault. "clean" and a new "go" step where my friend to > solve this issue. :-) >
I notcied the same error with a build of mine, a clean and go did not fix the problem, instead I looked at the configure of the termcap packet and noticed that it uses the prefix instead of the sysroot directive that is passed on with the latest trunk. For my build I fixed the problem with the attached patch
Current termcap makefile use the prefix directive use that to determine where to install the termcap files Signed-off-by: Bart vd. Meulen <[email protected]> --- rules/termcap.make | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) Index: ptxdist-1.99.svn/rules/termcap.make =================================================================== --- ptxdist-1.99.svn.orig/rules/termcap.make 2009-07-16 14:07:45.000000000 +0200 +++ ptxdist-1.99.svn/rules/termcap.make 2009-07-16 15:07:01.000000000 +0200 @@ -42,9 +42,8 @@ TERMCAP_ENV := $(CROSS_ENV) # # autoconf # -TERMCAP_AUTOCONF := \ - $(CROSS_AUTOCONF_ROOT) \ - --enable-install-termcap + +TERMCAP_AUTOCONF = $(CROSS_AUTOCONF_BROKEN_USR) # ---------------------------------------------------------------------------- # Target-Install @@ -63,7 +62,7 @@ $(STATEDIR)/termcap.targetinstall: @$(call install_fixup, termcap,DESCRIPTION,missing) ifdef PTXCONF_TERMCAP_TERMCAP - @$(call install_copy, termcap, 0, 0, 0755, $(TERMCAP_DIR)/termcap.src, /etc/termcap.src) + @$(call install_copy, termcap, 0, 0, 0755, $(TERMCAP_DIR)/termcap.src, /etc/termcap) endif @$(call install_finish, termcap)
-- ptxdist mailing list [email protected]
