aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chapter06/udev.xml4
-rw-r--r--packages.ent2
-rw-r--r--udev-config/Makefile13
3 files changed, 1 insertions, 18 deletions
diff --git a/chapter06/udev.xml b/chapter06/udev.xml
index 04c3c91a2..5d52666bd 100644
--- a/chapter06/udev.xml
+++ b/chapter06/udev.xml
@@ -164,10 +164,6 @@ make install</userinput></screen>
<screen><userinput remap="install">make install-doc</userinput></screen>
- <para>Install the documentation that explains the commonly-used rules
- files provided by Udev:</para>
-
-<screen><userinput remap="install">make install-extra-doc</userinput></screen>
</sect2>
<sect2 id="contents-udev" role="content">
diff --git a/packages.ent b/packages.ent
index 2864effd0..fee2368cb 100644
--- a/packages.ent
+++ b/packages.ent
@@ -508,7 +508,7 @@
<!ENTITY udev-ch6-du "11.6 MB">
<!ENTITY udev-ch6-sbu "0.2 SBU">
-<!ENTITY udev-config "udev-config-20100126"> <!-- Scripts depend on this format -->
+<!ENTITY udev-config "udev-config-20100128"> <!-- Scripts depend on this format -->
<!ENTITY udev-config-size "UDEV-SIZE KB"> <!-- Updated in Makefile -->
<!ENTITY udev-config-url "&downloads-root;&udev-config;.tar.bz2">
<!ENTITY udev-config-md5 "UDEV-MD5SUM"> <!-- Updated in Makefile -->
diff --git a/udev-config/Makefile b/udev-config/Makefile
index e8238c830..aa9dad742 100644
--- a/udev-config/Makefile
+++ b/udev-config/Makefile
@@ -8,13 +8,6 @@ RULES_FILES = \
55-lfs.rules
DOC_FILES = $(RULES_FILES:.rules=.txt)
-EXTRA_DOC_FILES = \
- 05-udev-early.txt \
- 60-persistent-input.txt \
- 60-persistent-storage.txt \
- 80-drivers.txt \
- 95-udev-late.txt
-
# Location to install the docs
DOC_DIR = $(PREFIX)/share/doc/udev-config
@@ -33,9 +26,3 @@ install-doc:
for doc in $(DOC_FILES); do \
$(INSTALL_DATA) doc/$$doc $(DESTDIR)$(DOC_DIR) || exit 1; \
done
-
-install-extra-doc:
- $(INSTALL) -d $(DESTDIR)$(DOC_DIR)
- for doc in $(EXTRA_DOC_FILES); do \
- $(INSTALL_DATA) doc/$$doc $(DESTDIR)$(DOC_DIR) || exit 1; \
- done