gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash autogen.sh ChangeLog


From: Rob Savoye
Subject: [Gnash-commit] gnash autogen.sh ChangeLog
Date: Tue, 27 Dec 2005 16:28:10 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Branch:         
Changes by:     Rob Savoye <address@hidden>     05/12/27 16:28:10

Modified files:
        .              : autogen.sh ChangeLog 

Log message:
        * autogen.sh: If any command arguments are supplied, don't run
        automake, as nothing has changed but the configure script. This is
        to reduce clutter in the checkin messages when only a configure
        change has been made.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/gnash/autogen.sh.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/gnash/gnash/ChangeLog.diff?tr1=1.13&tr2=1.14&r1=text&r2=text

Patches:
Index: gnash/ChangeLog
diff -u gnash/ChangeLog:1.13 gnash/ChangeLog:1.14
--- gnash/ChangeLog:1.13        Tue Dec 27 16:19:27 2005
+++ gnash/ChangeLog     Tue Dec 27 16:28:10 2005
@@ -1,5 +1,10 @@
 2005-12-27  Rob Savoye  <address@hidden>
 
+       * autogen.sh: If any command arguments are supplied, don't run
+       automake, as nothing has changed but the configure script. This is
+       to reduce clutter in the checkin messages when only a configure
+       change has been made.
+
        * macros/libXML.m4: Don't look for XML libraries in the prefix
        directory.
        * macros/firefox.m4: Don't look for Firefox libraries in the
Index: gnash/autogen.sh
diff -u gnash/autogen.sh:1.1 gnash/autogen.sh:1.2
--- gnash/autogen.sh:1.1        Tue Dec 20 21:03:23 2005
+++ gnash/autogen.sh    Tue Dec 27 16:28:10 2005
@@ -152,8 +152,13 @@
        echo "Running autoheader..."
        autoheader
       fi
-      echo "Running automake --gnu $am_opt ..."
-      automake --add-missing --copy --gnu $am_opt
+      # This is a hack. Any command line arguments maens don't run Automake.
+      # This is to prevent regenerating and checking in a pile of Makefiles
+      # that haven't really changed. They clutter up the checkin messages.
+      if test x"$1" = x ; then
+        echo "Running automake --gnu $am_opt ..."
+        automake --add-missing --copy --gnu $am_opt
+      fi
       echo "Running autoconf ..."
       autoconf
     )




reply via email to

[Prev in Thread] Current Thread [Next in Thread]