~vcs-imports/cdemu/trunk

« back to all changes in this revision

Viewing changes to cdemu-client/debian/rules

  • Committer: hstokset
  • Date: 2011-05-26 14:56:01 UTC
  • Revision ID: hstokset-20110526145601-aojnfi1077wiqr7a
all: update debian packaging scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
build: $(PYVERS:%=build-python%)
16
16
build-python%:
17
17
        test -x autogen.sh && ./autogen.sh
18
 
        dh build --before auto_configure
19
 
 
20
 
        test -r config.sub && mv -f config.sub config.sub.save || echo "not found"
21
 
        test -r config.guess && mv -f config.guess config.guess.save || echo "not found"
22
 
        test -r /usr/share/misc/config.sub && cp -f /usr/share/misc/config.sub config.sub
23
 
        test -r /usr/share/misc/config.guess && cp -f /usr/share/misc/config.guess config.guess
24
 
 
 
18
        dh build --with autotools_dev --before auto_configure
25
19
        dh_auto_configure -- $(CONFIGURE_FLAGS)
26
20
        dh build --after auto_configure
27
21
        touch $@
28
22
 
29
23
clean:
30
 
        test -r config.sub.save && mv -f config.sub.save config.sub || echo "not found"
31
 
        test -r config.guess.save && mv -f config.guess.save config.guess || echo "not found"
32
 
 
33
 
        dh clean
 
24
        dh clean --with autotools_dev
34
25
        rm -f build-python* install-python*
35
26
 
36
27
install: build $(PYVERS:%=install-python%)