* Make-mc.in (install.extfs): Splitted install of $(EXTFS_CONST)

and $(EXTFS_OUT) because the first must be installed from
	$(srcdir) and the second from $(builddir).

	Anyone knows why builddir gets defined to the top builddir and not to
	the current builddir (in this case it gets defined to .../build/mc instead
	of .../build/mc/vfs).
This commit is contained in:
Nuno Ferreira 1998-07-31 13:56:56 +00:00
parent 943177c616
commit 4d0ef91f45
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,9 @@
1998-07-31 Nuno Ferreira <nmrf@rnl.ist.utl.pt>
* Make-mc.in (install.extfs): Splitted install of $(EXTFS_CONST)
and $(EXTFS_OUT) because the first must be installed from
$(srcdir) and the second from $(builddir).
Fri Jul 24 00:22:30 1998 Tom Tromey <tromey@cygnus.com>
* Make-mc.in (DISTVFS): Changed Makefile.in to Make-mc.in.

View File

@ -123,10 +123,14 @@ install.extfs:
$(INSTALL_DATA) $(srcdir)/extfs/$$I \
$(DESTDIR)$(libdir)/extfs/$$I; \
done
for I in $(EXTFS_CONST) $(EXTFS_OUT); do \
for I in $(EXTFS_CONST) ; do \
$(INSTALL_PROGRAM) $(srcdir)/extfs/$$I \
$(DESTDIR)$(libdir)/extfs/$$I; \
done
for I in $(EXTFS_OUT) ; do \
$(INSTALL_PROGRAM) $(builddir)/vfs/extfs/$$I \
$(DESTDIR)$(libdir)/extfs/$$I; \
done
uninstall:
for I in $(EXTFS_MISC); do \