diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2010-01-28 22:11:43 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2010-01-28 22:11:43 +0000 |
commit | 0e038d1b8614cf8aeb015f0f44b8730034990837 (patch) | |
tree | 89be3375789807146f730d5e6618fbc73dd0c446 /udev-config | |
parent | 395ce8271849b1e88f77b46ce2ac01acb406649b (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
Diffstat (limited to 'udev-config')
-rw-r--r-- | udev-config/Makefile | 13 |
1 files changed, 0 insertions, 13 deletions
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 |