]> git.donarmstrong.com Git - lilypond.git/commitdiff
* GNUmakefile.in ($(config_h)): config.h should depend on
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 23 Sep 2003 11:59:45 +0000 (11:59 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 23 Sep 2003 11:59:45 +0000 (11:59 +0000)
config.hh.in .

* stepmake/aclocal.m4: only print config.cache warning if it exists.

* configure.in: remove pktrace reference.

* GNUmakefile.in (rsync-web): permissions and ownership for
website.

ChangeLog
GNUmakefile.in
configure.in
stepmake/aclocal.m4

index 3e8b7b451a17fa6ad93528c2fe880f6ec590c227..be6c0ef4e6c4f80e247157d28d6fb35ac06f631e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
 2003-09-23  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
+       * GNUmakefile.in ($(config_h)): config.h should depend on
+       config.hh.in .
+
+       * stepmake/aclocal.m4: only print config.cache warning if it exists.
+
+       * configure.in: remove pktrace reference.
+
+       * GNUmakefile.in (rsync-web): permissions and ownership for
+       website.
+
        * lily/volta-engraver.cc (staff_eligible): new function.
        (stop_translation_timestep): kill off spanners if not eligible.
 
index 99e4649d5b27b6e9b38ddbd5b4ce8d765421d65b..ee0e344c603eb095a48f2e739b637585d859a69e 100644 (file)
@@ -151,7 +151,7 @@ local-clean: builddir-setup-clean
 builddir-setup-clean:
        cd $(builddir) && rm -rf share
 
-$(config_h): configure.in aclocal.m4
+$(config_h): config.hh.in 
 #
 # this is to prevent people from getting
 # undefined symbols  when we add them to config.h.in,
@@ -168,6 +168,9 @@ $(config_h): configure.in aclocal.m4
 # maybe move into private script?
 rsync-web:
        cd out-www &&  mkdir web && tar  -xzf web.tar.gz -C web
-       cd out-www/web && chgrp -R lilypond . 
-       cd out-www/web &&  rsync --delete --stats --progress -rltvu -e ssh . x:/var/www/lilypond/doc/v1.9/
+       cd out-www/web && \
+       chgrp -R lilypond . && \
+       chmod -R  664 . && \
+       chmod 2775 `find -type d` . && \
+       rsync --group --delete --stats --progress -gorltvu -e ssh . x:/var/www/lilypond/doc/v1.9/
        cd out-www && rm -rf web/
index a94f5c4a9cfa6d269b8658f0a7c77628ac72cba3..74559b2711f19c07bb1176da947e490e9c4c027f 100644 (file)
@@ -62,7 +62,7 @@ STEPMAKE_GUILE(OPTIONAL)
 # perl for help2man.
 STEPMAKE_PERL(OPTIONAL)
 # mftrace for generating pfa's, pfb's
-STEPMAKE_PROGS(MFTRACE, pktrace mftrace, REQUIRED, 1.0.17)
+STEPMAKE_PROGS(MFTRACE, mftrace, REQUIRED, 1.0.17)
 # new makeinfo for multi-page website docs
 STEPMAKE_PROGS(MAKEINFO, makeinfo, OPTIONAL, 4.6)
 
index 086c69befc54912cfa645ef8c86ccd6e64d94ba6..cfb197ce2e421c5be8027a03239a953d3b80cbea 100644 (file)
@@ -314,7 +314,9 @@ AC_DEFUN(STEPMAKE_END, [
     if test -n "$OPTIONAL$REQUIRED$UNSUPPORTED"; then
        echo
        echo "See INSTALL.txt for more information on how to build $PACKAGE_NAME"
-       echo "Remove config.cache before rerunning ./configure"
+       if [ -f config.cache ] ; then
+           echo "Remove config.cache before rerunning ./configure"
+       fi 
     fi
     
     if test -n "$REQUIRED$UNSUPPORTED"; then