File Makefile.am changed (mode: 100644) (index 242fb5da5..2804673a6) |
... |
... |
SUBDIRS = src |
5 |
5 |
EXTRA_DIST = COPYING.3party ChangeLog.LuaAPI FAQ BUGS patches pkgs tests |
EXTRA_DIST = COPYING.3party ChangeLog.LuaAPI FAQ BUGS patches pkgs tests |
6 |
6 |
dist-hook: |
dist-hook: |
7 |
7 |
make -C "$(distdir)/tests" clean |
make -C "$(distdir)/tests" clean |
8 |
|
rm -f "$(distdir)/tests/.in.vim" |
|
9 |
8 |
|
|
10 |
9 |
# enable generating tags files in particular directories |
# enable generating tags files in particular directories |
11 |
10 |
distcheck-hook: |
distcheck-hook: |
File scripts/deploy changed (mode: 100755) (index c4961be9d..8d9313ebf) |
... |
... |
if [ "$target" = all ] || [ "$target" = archive ]; then |
126 |
126 |
# make archive |
# make archive |
127 |
127 |
if [ "$OS" != Windows_NT ]; then |
if [ "$OS" != Windows_NT ]; then |
128 |
128 |
archive_name="vifm-$ver.tar.bz2" |
archive_name="vifm-$ver.tar.bz2" |
129 |
|
make distcheck |
|
|
129 |
|
|
|
130 |
|
# perform build in a temporary directory to avoid picking up untracked |
|
131 |
|
# files in tests/ which is listed in EXTRA_DIST of Makefile.am |
|
132 |
|
build_dir=$(mktemp --directory --tmpdir vifm-release-XXXXXX) |
|
133 |
|
trap 'rm -rf "$build_dir"' EXIT |
|
134 |
|
|
|
135 |
|
git clone . "$build_dir" |
|
136 |
|
( cd "$build_dir" && scripts/fix-timestamps && ./configure ) |
|
137 |
|
make -C "$build_dir" distcheck |
|
138 |
|
mv "$build_dir/$archive_name" . |
130 |
139 |
else |
else |
131 |
140 |
# remove config.h to make Makefile.win install default configuration |
# remove config.h to make Makefile.win install default configuration |
132 |
141 |
rm -f build-aux/config.h |
rm -f build-aux/config.h |