~ubuntu-branches/ubuntu/oneiric/muse-el/oneiric

« back to all changes in this revision

Viewing changes to debian/emacsen-install

  • Committer: Bazaar Package Importer
  • Author(s): Michael W. Olson (GNU address)
  • Date: 2008-01-09 15:51:46 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080109155146-0wwzermvvzs9rqzo
Tags: 3.11-3ubuntu1
* Merge with with Debian unstable (LP: #137284). Remaining Ubuntu changes:
  - Keep manual.
  - Set Ubuntu MOTU to be Maintainer

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    cd ${ELDIR}
31
31
    FILES=`ls -1 *.el | grep -v autoloads`
32
32
    rm -f ${ELCDIR}/*.el
33
 
    cp ${FILES} ${ELCDIR}
34
33
    cd ${ELCDIR}
 
34
    ln -sf ${ELDIR}/*.el .
35
35
 
36
36
    cat << EOF > path.el
37
37
(setq load-path (cons "${ELPREFIX}" (cons "${ELPREFIX}/contrib" load-path))
38
38
      byte-compile-warnings nil)
39
39
EOF
40
40
    ${FLAVOR} ${FLAGS} ${FILES} 2>&1 | gzip -9qf > CompilationLog.gz
41
 
    rm -f *.el path.el
42
 
    ( cd ${ELDIR}
43
 
        for f in *.el; do
44
 
            ln -sf ${ELDIR}/${f} ${ELCDIR}/${f}
45
 
        done
46
 
    )
 
41
    rm -f path.el
47
42
done
48
43
 
49
44
exit 0