]> git.michaelhowe.org Git - packages/b/bup.git/commitdiff
Merge tag '0.27-rc4' into debian
authorRobert Edmonds <edmonds@debian.org>
Mon, 30 Mar 2015 01:10:31 +0000 (21:10 -0400)
committerRobert Edmonds <edmonds@debian.org>
Mon, 30 Mar 2015 01:10:31 +0000 (21:10 -0400)
0.27-rc4

Conflicts:
Makefile

1  2 
Makefile

diff --cc Makefile
index ee34f84dd1cc651d9de2753fde1497e539ee2b2c,11896134586681951ea2ea55de7c40033d4bd256..738f15bc978ce37fdaf06cb315a04e155f0ebbb5
+++ b/Makefile
@@@ -1,5 -1,9 +1,9 @@@
+ sampledata_rev := $(shell t/configure-sampledata --revision)
+ current_sampledata := t/sampledata/var/rev/v$(sampledata_rev)
  OS:=$(shell uname | sed 's/[-_].*//')
 -CFLAGS := -Wall -O2 -Werror -Wno-unknown-pragmas $(PYINCLUDE) $(CFLAGS)
 +CFLAGS := -Wall -O2 -Wno-unknown-pragmas $(PYINCLUDE) $(CFLAGS)
  CFLAGS := -D_FILE_OFFSET_BITS=64 $(CFLAGS)
  SOEXT:=.so
  
@@@ -13,15 -17,18 +17,18 @@@ els
    test_tmp := $(CURDIR)/t/tmp
  endif
  
- .PHONY: all
- all: bup
-       t/configure-sampledata --setup
+ initial_setup := $(shell ./configure-version --update)
+ bup_deps := bup lib/bup/_version.py lib/bup/_helpers$(SOEXT) cmds
  
- bup: lib/bup/_version.py lib/bup/_helpers$(SOEXT) cmds main.py
-       -ln -s main.py bup
-       test -L bup
 -all: $(bup_deps) Documentation/all $(current_sampledata)
++all: $(bup_deps) $(current_sampledata)
  
- Documentation/all: bup
+ bup:
+       ln -s main.py bup
+ Documentation/all: $(bup_deps)
+ $(current_sampledata):
+       t/configure-sampledata --setup
  
  INSTALL=install
  PYTHON=python