|
From: <cli...@li...> - 2010-12-15 01:13:28
|
Send clisp-cvs mailing list submissions to cli...@li... To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/clisp-cvs or, via email, send a message with subject or body 'help' to cli...@li... You can reach the person managing the list at cli...@li... When replying, please edit your Subject line so it is more specific than "Re: Contents of clisp-cvs digest..." CLISP CVS commits for today Today's Topics: 1. clisp/src ChangeLog,1.7576,1.7577 makemake.in,1.961,1.962 (Sam Steingold) ---------------------------------------------------------------------- Message: 1 Date: Mon, 22 Nov 2010 00:17:04 +0000 From: Sam Steingold <sd...@us...> Subject: clisp/src ChangeLog,1.7576,1.7577 makemake.in,1.961,1.962 To: cli...@li... Message-ID: <E1P...@sf...> Update of /cvsroot/clisp/clisp/src In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv13823/src Modified Files: ChangeLog makemake.in Log Message: * src/makemake.in: use ${MODULESDIR_} instead of ${SRCTOPDIR}modules Index: makemake.in =================================================================== RCS file: /cvsroot/clisp/clisp/src/makemake.in,v retrieving revision 1.961 retrieving revision 1.962 diff -u -d -r1.961 -r1.962 --- makemake.in 21 Oct 2010 08:07:08 -0000 1.961 +++ makemake.in 22 Nov 2010 00:16:59 -0000 1.962 @@ -3149,7 +3149,7 @@ echol # scripts in build-aux -MODULE_CONFIGURES=`find ${SRCTOPDIR}modules -name configure` +MODULE_CONFIGURES=`find ${MODULESDIR_} -name configure` BUILD_AUX_ALL=`grep '$ac_aux_dir/' ${MODULE_CONFIGURES} | sed 's,.*$ac_aux_dir/\([a-z.-]*\).*,\1,' | sort -u` BUILD_AUX='' test -n "${SRCDIR}" && case "${LN_S}" in @@ -3168,7 +3168,7 @@ # headers in build-aux BUILD_AUX_HEADERS=`cd ${SRCDIR}build-aux; ls *.h` -MODULE_AM=`find ${SRCTOPDIR}modules -name Makefile.am` +MODULE_AM=`find ${MODULESDIR_} -name Makefile.am` for h in ${BUILD_AUX_HEADERS}; do for m in ${MODULE_AM}; do if fgrep "BUILT_SOURCES += $h" $m >/dev/null 2>&1; then @@ -3968,7 +3968,7 @@ # clean-modules remove the copies of modules, do it if you change modprep and such clean-modules : - -\$(RMRF) \`ls -d ${SRCTOPDIR}modules/*/. | sed -e 's,/\.\$\$,,' -e 's,^.*/,,' | grep -v '^CVS\$\$'\` + -\$(RMRF) \`ls -d ${MODULESDIR_}*/. | sed -e 's,/\.\$\$,,' -e 's,^.*/,,' | grep -v '^CVS\$\$'\` # clean7 lets us go back to the main "configure". clean7 : clean6 clean-modules Index: ChangeLog =================================================================== RCS file: /cvsroot/clisp/clisp/src/ChangeLog,v retrieving revision 1.7576 retrieving revision 1.7577 diff -u -d -r1.7576 -r1.7577 --- ChangeLog 14 Nov 2010 16:02:40 -0000 1.7576 +++ ChangeLog 22 Nov 2010 00:16:58 -0000 1.7577 @@ -1,3 +1,7 @@ +2010-11-21 Sam Steingold <sd...@gn...> + + * makemake.in: use ${MODULESDIR_} instead of ${SRCTOPDIR}modules + 2010-11-14 Vladimir Tzankov <vtz...@gm...> [MULTITHREAD]: thread safe GENSYM and GENTEMP ------------------------------ ------------------------------------------------------------------------------ Beautiful is writing same markup. Internet Explorer 9 supports standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. Spend less time writing and rewriting code and more time creating great experiences on the web. Be a part of the beta today http://p.sf.net/sfu/msIE9-sfdev2dev ------------------------------ _______________________________________________ clisp-cvs mailing list cli...@li... https://lists.sourceforge.net/lists/listinfo/clisp-cvs End of clisp-cvs Digest, Vol 55, Issue 7 **************************************** |