summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@users.sourceforge.net>2008-02-28 20:41:17 -0500
committerTheodore Ts'o <tytso@mit.edu>2008-02-28 20:45:39 -0500
commit1f803990b8ebd27f49904896a73d596d1deb7c20 (patch)
treef0279a33a29489c24d30f7db20b21b0a54c9129d
parentd0f24159aac3a6fa39ece6a26e275b9020f0f50c (diff)
downloade2fsprogs-1f803990b8ebd27f49904896a73d596d1deb7c20.tar.gz
Fix makefile dependency issues for various install targets
Addresses-Sourceforge-Patches: #1903484 Addresses-Sourceforge-Patches: #1903466 Addresses-Sourceforge-Patches: #1903456 Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
-rw-r--r--Makefile.in2
-rw-r--r--doc/Makefile.in2
-rw-r--r--e2fsck/Makefile.in2
3 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 8fe2a033..0f7aba30 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -74,7 +74,7 @@ TAGS clean-recursive distclean-recursive depend-recursive check-recursive \
done
all-progs-recursive install-progs-recursive install-strip-progs-recursive \
- uninstall-progs-recursive:
+ uninstall-progs-recursive: all-libs-recursive
@for subdir in $(PROG_SUBDIRS); do \
if test -d $$subdir ; then \
target=`echo $@|$(SED) 's/-progs-recursive//'`; \
diff --git a/doc/Makefile.in b/doc/Makefile.in
index a401fce7..78a9cb98 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -18,7 +18,7 @@ HTML=texi2html
all:: libext2fs.info libext2fs.dvi
-install-doc-libs:
+install-doc-libs: libext2fs.info libext2fs.dvi
@$(RM) -rf $(DESTDIR)$(infodir)/libext2fs.info*
@echo " MKINSTALLDIRS $(infodir)"
@$(MKINSTALLDIRS) $(DESTDIR)$(infodir)
diff --git a/e2fsck/Makefile.in b/e2fsck/Makefile.in
index e624f131..d5a88875 100644
--- a/e2fsck/Makefile.in
+++ b/e2fsck/Makefile.in
@@ -172,7 +172,7 @@ installdirs:
@$(MKINSTALLDIRS) $(DESTDIR)$(root_sbindir) \
$(DESTDIR)$(man8dir) $(DESTDIR)$(man5dir)
-install: $(PROGS) $(MANPAGES) installdirs
+install: $(PROGS) $(MANPAGES) $(FMANPAGES) installdirs
@for i in $(PROGS); do \
echo " INSTALL $(root_sbindir)/$$i"; \
$(INSTALL_PROGRAM) $$i $(DESTDIR)$(root_sbindir)/$$i; \