aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Burgess <matthew@linuxfromscratch.org>2010-01-28 22:11:43 +0000
committerMatthew Burgess <matthew@linuxfromscratch.org>2010-01-28 22:11:43 +0000
commit0e038d1b8614cf8aeb015f0f44b8730034990837 (patch)
tree89be3375789807146f730d5e6618fbc73dd0c446
parent395ce8271849b1e88f77b46ce2ac01acb406649b (diff)
Don't try to install documentation that was removed in udev-config-20090126.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9170 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-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