X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=1870a87533946d9d23b33ca2bd0ee5a6f93a07b1;hb=762dff06850ff15cc400a653d0e9778af9998139;hp=d8b19b55c8d00dfb3be3a94a77a8e3f38798e54a;hpb=b0fbd0da35ed132874848cf31a1c8294aee4476c;p=bup.git diff --git a/Makefile b/Makefile index d8b19b5..1870a87 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ OS:=$(shell uname | sed 's/[-_].*//') CFLAGS := -Wall -O2 -Werror -Wno-unknown-pragmas $(PYINCLUDE) $(CFLAGS) +CFLAGS := -D_FILE_OFFSET_BITS=64 $(CFLAGS) SOEXT:=.so ifeq ($(OS),CYGWIN) @@ -88,6 +89,7 @@ runtests-python: all runtests-cmdline: all test -e t/tmp || mkdir t/tmp + TMPDIR="$(test_tmp)" t/test-fuse.sh TMPDIR="$(test_tmp)" t/test-drecurse.sh TMPDIR="$(test_tmp)" t/test-cat-file.sh TMPDIR="$(test_tmp)" t/test-compression.sh @@ -100,8 +102,10 @@ runtests-cmdline: all TMPDIR="$(test_tmp)" t/test-restore-map-owner.sh TMPDIR="$(test_tmp)" t/test-restore-single-file.sh TMPDIR="$(test_tmp)" t/test-rm-between-index-and-save.sh + TMPDIR="$(test_tmp)" t/test-sparse-files.sh TMPDIR="$(test_tmp)" t/test-command-without-init-fails.sh TMPDIR="$(test_tmp)" t/test-redundant-saves.sh + TMPDIR="$(test_tmp)" t/test-save-creates-no-unrefs.sh TMPDIR="$(test_tmp)" t/test-save-restore-excludes.sh TMPDIR="$(test_tmp)" t/test-save-strip-graft.sh TMPDIR="$(test_tmp)" t/test-import-rdiff-backup.sh @@ -149,13 +153,13 @@ export-docs: Documentation/all rm -f $${GIT_INDEX_FILE} && \ git add -f Documentation/*.1 && \ git update-ref refs/heads/man \ - $$(echo "Autogenerated man pages for $$(git describe)" \ + $$(echo "Autogenerated man pages for $$(git describe --always)" \ | git commit-tree $$(git write-tree --prefix=Documentation) \ -p refs/heads/man) && \ rm -f $${GIT_INDEX_FILE} && \ git add -f Documentation/*.html && \ git update-ref refs/heads/html \ - $$(echo "Autogenerated html pages for $$(git describe)" \ + $$(echo "Autogenerated html pages for $$(git describe --always)" \ | git commit-tree $$(git write-tree --prefix=Documentation) \ -p refs/heads/html) @@ -179,12 +183,8 @@ clean: Documentation/clean config/clean if test -e t/mnt; then rm -r t/mnt; fi if test -e t/tmp; then t/cleanup-mounts-under t/tmp; fi # FIXME: migrate these to t/mnt/ - if test -e bupmeta.tmp/testfs; \ - then umount bupmeta.tmp/testfs || true; fi if test -e lib/bup/t/testfs; \ then umount lib/bup/t/testfs || true; fi - if test -e bupmeta.tmp/testfs-limited; \ - then umount bupmeta.tmp/testfs-limited || true; fi rm -rf *.tmp *.tmp.meta t/*.tmp lib/*/*/*.tmp build lib/bup/build lib/bup/t/testfs if test -e t/tmp; then t/force-delete t/tmp; fi t/configure-sampledata --clean