mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-11 03:54:59 -05:00
cd2370754a
Forcing vim users to view files with a tabstop of 2 seems really unnecessary when noet is set. I find it much easier to read code with ts=4 and I dislike having to override the modeline by hand. Command run: find . -type f -exec sed -i '/vim.* noet/s# ts=2 sw=2##' {} + Signed-off-by: Florian Pritz <bluewind@xinu.at> Signed-off-by: Allan McRae <allan@archlinux.org>
24 lines
276 B
Makefile
24 lines
276 B
Makefile
SUBDIRS = tests
|
|
|
|
check_SCRIPTS = \
|
|
pactest.py \
|
|
pmdb.py \
|
|
pmenv.py \
|
|
pmfile.py \
|
|
pmpkg.py \
|
|
pmrule.py \
|
|
pmtest.py \
|
|
tap.py \
|
|
util.py
|
|
|
|
noinst_SCRIPTS = $(check_SCRIPTS)
|
|
|
|
EXTRA_DIST = \
|
|
README \
|
|
TODO \
|
|
ChangeLog \
|
|
ldconfig.stub \
|
|
$(check_SCRIPTS)
|
|
|
|
# vim:set noet:
|