mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
5a12e7c134
Wed Aug 26 10:00:38 CDT 2009 Slackware 13.0 x86_64 is released as stable! Thanks to everyone who helped make this release possible -- see the RELEASE_NOTES for the credits. The ISOs are off to the replicator. This time it will be a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD. We're taking pre-orders now at store.slackware.com. Please consider picking up a copy to help support the project. Once again, thanks to the entire Slackware community for all the help testing and fixing things and offering suggestions during this development cycle. As always, have fun and enjoy! -P.
10 lines
478 B
Bash
10 lines
478 B
Bash
# Vim ships a better (IMHO) version of ctags, and we don't want
|
|
# to overwrite it with this one. If you really want emacs' ctags
|
|
# either copy or link it into place yourself, or remove the vim
|
|
# packages and reinstall emacs. Besides, does anyone know/use
|
|
# *both* emacs and vi? I'd think that would bring the universe
|
|
# to an end. ;-)
|
|
if [ ! -e usr/bin/ctags ]; then
|
|
cp -a usr/bin/ctags-emacs usr/bin/ctags
|
|
cp -a usr/man/man1/ctags-emacs.1.gz usr/man/man1/ctags.1.gz
|
|
fi
|