diff options
author | joeyh <joeyh> | 2006-04-17 20:11:24 +0000 |
---|---|---|
committer | joeyh <joeyh> | 2006-04-17 20:11:24 +0000 |
commit | f859c23a77b93368b96630b4b0ff79f039b87a2f (patch) | |
tree | 674468aab89ef797b935c8e4c479f3708263f01f /debian/rules | |
parent | 710a0ee980939fd6c9aacd121b41c9df7163e694 (diff) |
r1905: * dh_installxfonts: pass --x11r7-layout to update-fonts-* commands to ensure
they use the right new directory. Closes: #362820
* dh_installxfonts: also, alias files have moved from /etc/X11/fonts/* to
/etc/X11/fonts/X11R7/*, update call to update-fonts-alias and the man page
accordingly; packages containing alias files will need to switch to the
new directory on their own.
* dh_installudev: correct documentation for --name. Closes: #363028
* Fix broken directory removal code.
Diffstat (limited to 'debian/rules')
-rwxr-xr-x | debian/rules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 7b3a02b..f2401f7 100755 --- a/debian/rules +++ b/debian/rules @@ -67,7 +67,7 @@ clean: ./run dh_clean *.1 *.7 *-stamp Debian/Debhelper/Dh_Version.pm po4a --rm-translations --rm-backups man/po4a/po4a.cfg for lang in $(LANGS); do \ - rmdir man/$$lang; \ + if [ -e man/$$lang ]; then rmdir man/$$lang; fi; \ done; test: version test-stamp |