~psusi/ubuntu/precise/dmraid/fix-gpt

« back to all changes in this revision

Viewing changes to 1.0.0.rc15/man/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Artur Rona
  • Date: 2010-02-04 21:34:22 UTC
  • mfrom: (1.1.4 upstream) (2.4.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100204213422-tdag8lcxpr7ahmg4
Tags: 1.0.0.rc16-3ubuntu1
* Merge from debian testing. (LP: #503136)  Remaining changes:
  - debian/dmraid-activate: Remove the special-casing of the root
    device which breaks in many situations and leaves the raw devices
    exposed. This was introduced in Debian to accommodate some broken
    configurations which wanted to access "partitions" on the raid
    raw devices. In Ubuntu, broken configurations has not been supported.
  - debian/dmraid.postinst: Comment out "udevadm trigger" call in postinst
    for now as it has severeconsequences when mountall is installed
    (clears /tmp).  If dmraid is installed, then presumably the important
    system devices are up and one canbe bothered with a reboot to take 
    the change into account. Let update-initramfs flag the system
    as needing a reboot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Copyright (C) 2004-2005  Heinz Mauelshagen, Red Hat GmbH. All rights reserved.
3
 
#
4
 
# See file LICENSE at the top of this source tree for license information.
5
 
#
6
 
 
7
 
srcdir = @srcdir@
8
 
top_srcdir = @top_srcdir@
9
 
VPATH = @srcdir@
10
 
 
11
 
MAN8=dmraid.8
12
 
MAN8DIR=${mandir}/man8
13
 
 
14
 
include $(top_srcdir)/make.tmpl
15
 
 
16
 
.PHONY: install_dmraid_man remove_dmraid_man
17
 
 
18
 
install_dmraid_man:
19
 
        @echo "Installing $(MAN8) in $(MAN8DIR)"; \
20
 
        mkdir -p $(MAN8DIR); \
21
 
        for f in $(MAN8); \
22
 
        do \
23
 
           $(RM) $(MAN8DIR)/$$f; \
24
 
           @INSTALL@ -D -m 444 $$f $(MAN8DIR)/$$f; \
25
 
        done
26
 
 
27
 
install:        install_dmraid_man
28
 
 
29
 
remove_dmraid_man:
30
 
        @echo "Removing $(MAN8) in $(MAN8DIR)"; \
31
 
        for f in $(MAN8); \
32
 
        do \
33
 
           $(RM) $(MAN8DIR)/$$f; \
34
 
        done
35
 
 
36
 
remove: remove_dmraid_man