Codebase list inform-mode / 294eee7
Install symlinks to ELisp source files, as per Debian Emacs policy. Ben Finney 7 years ago
2 changed file(s) with 6 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
2020 Closes: bug#550688. Thanks to A Mennucc for the report.
2121 * Use the Debian function for adding the package to the Emacs load-path.
2222 Closes: bug#663407. Thanks to Kevin Ryde for the report.
23 * Install symlinks to ELisp source files, as per Debian Emacs policy.
24 Closes: bug#665397. Thanks to Samuel Bronson for the report.
2325
2426 --
2527
2525 install -m 755 -d ${ELCDIR}
2626 cd ${ELDIR}
2727 FILES=`echo *.el`
28 cp ${FILES} ${ELCDIR}
2928 cd ${ELCDIR}
29 for f in ${FILES} ; do
30 ln -sf ${ELDIR}/$f .
31 done
3032
3133 cat << EOF > path.el
3234 (setq load-path (cons "." load-path) byte-compile-warnings nil)
3335 EOF
3436 ${FLAVOR} ${FLAGS} ${FILES}
35 rm -f *.el path.el
37 rm -f path.el
3638
3739 exit 0
3840