mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 23:55:04 -04: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>
30 lines
893 B
Makefile
30 lines
893 B
Makefile
dist_sysconf_DATA = makepkg.conf pacman.conf
|
|
EXTRA_DIST = makepkg.conf.in pacman.conf.in
|
|
|
|
# Files that should be removed, but which Automake does not know.
|
|
MOSTLYCLEANFILES = $(dist_sysconf_DATA)
|
|
|
|
SED_PROCESS = \
|
|
$(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
|
|
$(SED) \
|
|
-e 's|@sysconfdir[@]|$(sysconfdir)|g' \
|
|
-e 's|@localstatedir[@]|$(localstatedir)|g' \
|
|
-e 's|@prefix[@]|$(prefix)|g' \
|
|
-e 's|@PACKAGE_VERSION[@]|$(PACKAGE_VERSION)|g' \
|
|
-e 's|@PACKAGE_NAME[@]|$(PACKAGE_NAME)|g' \
|
|
-e 's|@PKGEXT[@]|$(PKGEXT)|g' \
|
|
-e 's|@SRCEXT[@]|$(SRCEXT)|g' \
|
|
-e 's|@STRIP_BINARIES[@]|$(STRIP_BINARIES)|g' \
|
|
-e 's|@STRIP_SHARED[@]|$(STRIP_SHARED)|g' \
|
|
-e 's|@STRIP_STATIC[@]|$(STRIP_STATIC)|g' \
|
|
-e 's|@CARCH[@]|$(CARCH)|g' \
|
|
-e 's|@CHOST[@]|$(CHOST)|g' \
|
|
-e 's|@ARCHSWITCH[@]|$(ARCHSWITCH)|g' \
|
|
-e 's|@ROOTDIR[@]|$(ROOTDIR)|g' \
|
|
< $< > $@
|
|
|
|
%.conf: %.conf.in Makefile
|
|
$(SED_PROCESS)
|
|
|
|
# vim:set noet:
|