| Newsgroups |
gmane.mail.ifile.general |
| Message-ID |
<[email protected]> |
I just rebuilt my ifile installation with 1.1.0, and found that the
VPATH-based build (changing to a build directory and running
"../../src/ifile-1.1.0/configure --blah ...") lost when it tried to
install ifile.1, since ifile.1 is a source file that's not present in
the build directory (Everything else that gets installed is processed
by the build, and ends up in the build directory).
I believe that this simple diff fixes it:
--- Makefile.in~ Tue Sep 10 09:09:29 2002
+++ Makefile.in Tue Sep 10 15:00:54 2002
@@ -202,7 +202,7 @@
done
cd $(mandir)/man1 ; rm -f $(MAN_1_PAGES)
for file in $(MAN_1_PAGES); do \
- $(INSTALL) -m 0644 $$file $(mandir)/man1; \
+ $(INSTALL) -m 0644 $(srcdir)/$$file $(mandir)/man1; \
done
- Nathan