diff options
author | Theodore Ts'o <tytso@mit.edu> | 1998-03-30 01:11:44 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 1998-03-30 01:11:44 +0000 |
commit | bf2602bef6040fb958eea6088667f6203153e95e (patch) | |
tree | 9ecba46d3e8b0aba0408a56795708f3ec79e6dc3 /Makefile.in | |
parent | 2a3013b80704b7d9128cbe2c746550e570eb5a02 (diff) | |
download | e2fsprogs-bf2602bef6040fb958eea6088667f6203153e95e.tar.gz |
ChangeLog, Makefile.in, MCONFIG.in:
Makefile.in: Use && after a cd command so that the right thing happens
if the directory is missing. Don't compile man pages upon
installation any more, since modern Linux systems don't have
/usr/man/cat? anymore (they typically cache man pages in /var/catman
and delete them if they haven't been used in a while, to save on disk
space, and because CPU's are fast enough these days that you can get
away with this).
MCONFIG.in: Add a new makefile variable for the share directory (i.e.,
/usr/share). Make an autoconf magic make rule so that
$(top_builddir)/util/subst.conf gets rebuilt automatically when
necessary.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index 11c92c69..f235517e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -21,14 +21,14 @@ progs: $(SUBS) all-progs-recursive libs: $(SUBS) all-libs-recursive docs: - (cd doc; make libext2fs.info) + (cd doc && make libext2fs.info) install-doc-libs: - (cd doc; make install-doc-libs) + (cd doc && make install-doc-libs) install: all-libs-recursive install-progs-recursive \ install-shlibs-libs-recursive install-doc-libs - (export MANPATH=$(DESTDIR)$(mandir); $(srcdir)/install-utils/compile_manpages) +# (export MANPATH=$(DESTDIR)$(mandir); $(srcdir)/install-utils/compile_manpages) install-libs: install-libs-recursive @@ -109,7 +109,7 @@ $(srcdir)/.exclude-file: echo "$(SRCROOT)/.exclude-file" >> $(srcdir)/.exclude-file echo $(SRCROOT)/e2fsprogs-@E2FSPROGS_VERSION@.tar.gz \ >> $(srcdir)/.exclude-file - + source_tar_file: $(srcdir)/.exclude-file (cd $(srcdir)/..; a=$(SRCROOT); rm -f $$a ; ln -sf e2fsprogs $$a ; \ $(TAR) -c -h -v -f - \ |