diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-02-16 21:49:26 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-02-16 21:54:30 -0500 |
commit | 25b1f60aeb26f8d14d7619b304f8aca0735c850f (patch) | |
tree | 492c283eb176b87d3f256ac60261b183329519b3 /debian/rules | |
parent | e30725efa8f85a788540efcddb80acc3ba23c257 (diff) |
need to pass PREFIX=/usr to avoid
was lost in rules file rewrite
I used debhelper 7.2 features too, shoot me :-)
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/debian/rules b/debian/rules index da8249920..0a6571521 100755 --- a/debian/rules +++ b/debian/rules @@ -1,13 +1,18 @@ #!/usr/bin/make -f +%: + dh $@ + +# keeps it out if /usr/local +override_dh_auto_configure: + dh_auto_configure -- PREFIX=/usr -binary: binary-indep -binary-indep: - dh $@ --before dh_compress +# avoid compressing files in the doc wiki +override_dh_compress: dh_compress -Xhtml - dh $@ --after dh_compress -%: - dh $@ +# distclean moans about MANIFEST, this is quieter +override_dh_auto_clean: + $(MAKE) realclean # Not intended for use by anyone except the author. announcedir: |