Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: Keith Marshall <keithmarshall@us...> - 2007-11-10 15:13:02
|
Update of /cvsroot/mingw/catgets In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv17860 Modified Files: ChangeLog Makefile.in Log Message: Makefile.in (install-man): Require pre-existing ${prefix}; when ok, actually invoke command to perform the installation. (install-progs, install-libs, install-headers): Be verbose; echo commands as invoked within compound command blocks. Index: Makefile.in =================================================================== RCS file: /cvsroot/mingw/catgets/Makefile.in,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile.in 16 Jul 2007 19:59:42 -0000 1.3 --- Makefile.in 10 Nov 2007 15:12:58 -0000 1.4 *************** *** 10,14 **** # # Written by Keith Marshall <keithmarshall@...> ! # Last modification: 20-Jun-2007 # # --- 10,14 ---- # # Written by Keith Marshall <keithmarshall@...> ! # Last modification: 10-Nov-2007 # # *************** *** 208,214 **** --- 208,216 ---- $(mkinstalldirs) --require ${exec_prefix} ${bindir} ${libdir} for prog in $(BUILD_PROGS); do \ + echo $(INSTALL_PROGRAM) $$prog ${bindir}/$(tool_prefix)$$prog; \ $(INSTALL_PROGRAM) $$prog ${bindir}/$(tool_prefix)$$prog; \ done for prog in $(INSTALL_PROGS); do \ + echo $(INSTALL_PROGRAM) ${srcdir}/$$prog ${bindir}/$(tool_prefix)$$prog; \ $(INSTALL_PROGRAM) ${srcdir}/$$prog ${bindir}/$(tool_prefix)$$prog; \ done *************** *** 216,223 **** --- 218,228 ---- install-libs: all-libs $(all-dll) test -z "$(all-dll)" || for dll in $(BUILD_DLLS); do \ + echo $(INSTALL_DATA) $$dll ${bindir}; \ $(INSTALL_DATA) $$dll ${bindir}; \ + echo $(INSTALL_DATA) $(DLL_IMPORT_LIBNAME) ${libdir}; \ $(INSTALL_DATA) $(DLL_IMPORT_LIBNAME) ${libdir}; \ done for lib in $(BUILD_LIBS); do \ + echo $(INSTALL_DATA) $$lib ${libdir}; \ $(INSTALL_DATA) $$lib ${libdir}; \ done *************** *** 226,229 **** --- 231,235 ---- $(mkinstalldirs) ${includedir} test -z "$^" || for hdr in $^; do \ + echo $(INSTALL_DATA) $$hdr ${includedir}; \ $(INSTALL_DATA) $$hdr ${includedir}; \ done *************** *** 232,239 **** install-man: $(subst .man,.n,$(MANPAGE_SOURCES)) for file in $^; do \ pagename=`echo $$file | sed 's/\.n//'`; \ ! section=`sed $(mansect) ${srcdir}/$$pagename.man`; \ echo $(INSTALL_DATA) $$file $(manpage); \ done --- 238,251 ---- install-man: $(subst .man,.n,$(MANPAGE_SOURCES)) + if test "${mandir}" = "${prefix}/man" \ + || test "${mandir}" = "${prefix}/share/man"; then \ + $(mkinstalldirs) --require ${prefix} ${mandir}; \ + fi for file in $^; do \ pagename=`echo $$file | sed 's/\.n//'`; \ ! section=`sed $(mansect) ${srcdir}/man/$$pagename.man`; \ ! $(mkinstalldirs) --require ${mandir} ${mandir}/man$$section; \ echo $(INSTALL_DATA) $$file $(manpage); \ + $(INSTALL_DATA) $$file $(manpage); \ done Index: ChangeLog =================================================================== RCS file: /cvsroot/mingw/catgets/ChangeLog,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** ChangeLog 10 Nov 2007 14:34:45 -0000 1.20 --- ChangeLog 10 Nov 2007 15:12:58 -0000 1.21 *************** *** 1,2 **** --- 1,9 ---- + 2007-11-10 Keith Marshall <keithmarshall@...> + + * Makefile.in (install-man): Require pre-existing ${prefix}; + when ok, actually invoke command to perform the installation. + (install-progs, install-libs, install-headers): Be verbose; + echo commands as invoked within compound command blocks. + 2007-09-22 Charles Wilson <cwilso11@...> |