~ubuntu-branches/ubuntu/saucy/debian-installer-utils/saucy

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2010-05-21 16:57:48 UTC
  • mfrom: (1.2.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100521165748-ipsy50qfbv1ddo4d
Tags: 1.75ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - user-params: Don't propagate vga=*, break=*, *-ubiquity, or
    noninteractive to installed system.
  - Use /proc/self/fd/4 rather than /dev/fd/4 in fetch-url-methods/http;
    the latter doesn't seem to exist in d-i.
  - list-devices: new "mmc-partition" type for detecting partitions on MMC
    devices.
  - Don't include the battery subsystem on calls to udevadm trigger.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
%:
3
3
        dh $@
4
4
 
5
 
TERMS=/usr/share/terminfo/a/ansi /usr/share/terminfo/d/dumb \
6
 
      /usr/share/terminfo/l/linux /usr/share/terminfo/v/vt102
 
5
TERMNAMES = a/ansi d/dumb l/linux v/vt102
7
6
 
8
7
ifeq ($(DEB_HOST_ARCH_OS),kfreebsd)
9
 
TERMS+=/usr/share/terminfo/c/cons25
 
8
TERMNAMES += c/cons25
10
9
endif
11
10
 
 
11
TERMS = $(foreach term,$(TERMNAMES),\
 
12
          $(firstword $(wildcard /lib/terminfo/$(term)) \
 
13
                      $(wildcard /usr/share/terminfo/$(term))))
 
14
 
12
15
override_dh_auto_install:
13
16
        for file in $(TERMS); do \
14
17
                mkdir -p debian/di-utils-terminfo/`dirname $$file`; \