Hi.
As I see, the problem is with not copying char-name/unicode/*.el files
to <flavour> dir, where they should be byte-compiled.
This diff just adds these files to this directory and compile path.
Regards,
Przemek
cd /home/sehg/tmp/nxml-mode-20041004/debian/
diff -c /home/sehg/tmp/nxml-mode-20041004/debian/emacsen-install\~
/home/sehg/tmp/nxml-mode-20041004/debian/emacsen-install
*** /home/sehg/tmp/nxml-mode-20041004/debian/emacsen-install~ 2007-03-02
00:08:52.000000000 +0100
--- /home/sehg/tmp/nxml-mode-20041004/debian/emacsen-install 2007-03-02
01:27:05.000000000 +0100
***************
*** 32,45 ****
install -m 755 -d ${ELCDIR}
cd ${ELDIR}
! FILES=`echo *.el`
! cp ${FILES} ${ELCDIR}
cd ${ELCDIR}
cat << EOF > path.el
(setq load-path (cons "." load-path) byte-compile-warnings nil)
EOF
${FLAVOR} ${FLAGS} ${FILES}
! rm -f *.el path.el
exit 0
--- 32,45 ----
install -m 755 -d ${ELCDIR}
cd ${ELDIR}
! FILES=`echo *.el char-name/unicode/*.el`
! cp --parents ${FILES} ${ELCDIR}
cd ${ELCDIR}
cat << EOF > path.el
(setq load-path (cons "." load-path) byte-compile-warnings nil)
EOF
${FLAVOR} ${FLAGS} ${FILES}
! rm -f ${FILES} path.el
exit 0
Diff finished at Fri Mar 2 01:46:34