Browse Source

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
Matthew Burgess 15 years ago
parent
commit
0e038d1b86
3 changed files with 1 additions and 18 deletions
  1. 0 4
      chapter06/udev.xml
  2. 1 1
      packages.ent
  3. 0 13
      udev-config/Makefile

+ 0 - 4
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">

+ 1 - 1
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 -->

+ 0 - 13
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