gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Bastiaan Jacques
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-311-gb167ea2
Date: Sun, 24 Apr 2011 14:39:24 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  b167ea26a78c8157c4341f323315ad768fa6f561 (commit)
      from  d6ce1c163ddf3dd8d45fe10eb538aa4e9db901c7 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=b167ea26a78c8157c4341f323315ad768fa6f561


commit b167ea26a78c8157c4341f323315ad768fa6f561
Author: Bastiaan Jacques <address@hidden>
Date:   Sun Apr 24 16:39:17 2011 +0200

    Prune nonexistent directories from libslist and incllist to speed up 
configure.

diff --git a/configure.ac b/configure.ac
index 61473f7..2c454d5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -515,6 +515,17 @@ fi
 
 AM_CONDITIONAL(CROSS_COMPILING, [ test x$cross_compiling = xyes ])
 
+for dir in ${incllist}; do
+  test -d ${dir} && pruned_incllist="${pruned_incllist} ${dir}";
+done
+
+for dir in ${libslist}; do
+  test -d ${dir} && pruned_libslist="${pruned_libslist} ${dir}";
+done
+
+libslist="${pruned_libslist}";
+incllist="${pruned_incllist}";
+
 dnl !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 dnl !! 
 dnl !! IMPORTANT NOTICE 

-----------------------------------------------------------------------

Summary of changes:
 configure.ac |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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