Hi, Thank you for your report. I fixed the bug. Skip byte-compilintg in the case of xemacs21.
You can get it from mentors, please upload it if it would be okay. dget http://mentors.debian.net/debian/pool/main/s/silversearcher-ag-el/silversearcher-ag-el_0.43-2.dsc And here's a diff, ---------------------------------------------------------------------- diff -Nru silversearcher-ag-el-0.43/debian/changelog silversearcher-ag-el-0.43/debian/changelog --- silversearcher-ag-el-0.43/debian/changelog 2014-06-15 16:31:58.000000000 +0900 +++ silversearcher-ag-el-0.43/debian/changelog 2014-06-17 13:05:27.000000000 +0900 @@ -1,3 +1,10 @@ +silversearcher-ag-el (0.43-2) unstable; urgency=medium + + * fix byte-compiling issues (Closes: #751829) + - Drop xemacs21 from debian/emacsen-{install,remove}. + + -- Hajime Mizuno <[email protected]> Tue, 17 Jun 2014 12:37:26 +0900 + silversearcher-ag-el (0.43-1) unstable; urgency=low * new upstream release diff -Nru silversearcher-ag-el-0.43/debian/emacsen-install silversearcher-ag-el-0.43/debian/emacsen-install --- silversearcher-ag-el-0.43/debian/emacsen-install 2014-06-15 14:36:29.000000000 +0900 +++ silversearcher-ag-el-0.43/debian/emacsen-install 2014-06-17 12:44:05.000000000 +0900 @@ -9,6 +9,7 @@ PACKAGE=silversearcher-ag-el if [ ${FLAVOR} = emacs ]; then exit 0; fi +if [ ${FLAVOR} = xemacs21 ]; then exit 0; fi echo install/${PACKAGE}: Handling install for emacsen flavor ${FLAVOR} diff -Nru silversearcher-ag-el-0.43/debian/emacsen-remove silversearcher-ag-el-0.43/debian/emacsen-remove --- silversearcher-ag-el-0.43/debian/emacsen-remove 2014-06-15 14:36:29.000000000 +0900 +++ silversearcher-ag-el-0.43/debian/emacsen-remove 2014-06-17 12:44:15.000000000 +0900 @@ -4,6 +4,8 @@ FLAVOR=$1 PACKAGE=silversearcher-ag-el +if [ ${FLAVOR} = xemacs21 ]; then exit 0; fi + if [ ${FLAVOR} != emacs ]; then if test -x /usr/sbin/install-info-altdir; then echo remove/${PACKAGE}: removing Info links for ${FLAVOR} ---------------------------------------------------------------------- Thanks. -- Regards, Hajime MIZUNO <[email protected]> Key fingerprint = 9B07 B934 B70C 8482 8892 E276 502E 0713 4EEF 9E8D -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

