[gtkmm] Gen Scripts: Minor clean up of the description of the scripts.



commit ef0b9735f60f968fc1c8886f55c3941d43b096a8
Author: José Alburquerque <jaalburquerque gmail com>
Date:   Mon Jun 10 18:40:30 2013 -0400

    Gen Scripts: Minor clean up of the description of the scripts.
    
        * tools/gen_scripts/gdk_generate_docs.sh:
        * tools/gen_scripts/gdk_generate_enums.sh:
        * tools/gen_scripts/gdk_generate_extra_defs.sh:
        * tools/gen_scripts/gdk_generate_methods.sh:
        * tools/gen_scripts/gtk_generate_docs.sh:
        * tools/gen_scripts/gtk_generate_enums.sh:
        * tools/gen_scripts/gtk_generate_methods.sh:

 ChangeLog                                    |   12 ++++++++++++
 tools/gen_scripts/gdk_generate_docs.sh       |    6 +++---
 tools/gen_scripts/gdk_generate_enums.sh      |    6 +++---
 tools/gen_scripts/gdk_generate_extra_defs.sh |    2 +-
 tools/gen_scripts/gdk_generate_methods.sh    |    6 +++---
 tools/gen_scripts/gtk_generate_docs.sh       |    6 +++---
 tools/gen_scripts/gtk_generate_enums.sh      |    6 +++---
 tools/gen_scripts/gtk_generate_methods.sh    |    6 +++---
 8 files changed, 31 insertions(+), 19 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index e30dc87..ff822c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2013-06-10  José Alburquerque  <jaalburquerque gmail com>
+
+       Gen Scripts: Minor clean up of the description of the scripts.
+
+       * tools/gen_scripts/gdk_generate_docs.sh:
+       * tools/gen_scripts/gdk_generate_enums.sh:
+       * tools/gen_scripts/gdk_generate_extra_defs.sh:
+       * tools/gen_scripts/gdk_generate_methods.sh:
+       * tools/gen_scripts/gtk_generate_docs.sh:
+       * tools/gen_scripts/gtk_generate_enums.sh:
+       * tools/gen_scripts/gtk_generate_methods.sh:
+
 2013-06-03  Kjell Ahlstedt  <kjell ahlstedt bredband net>
 
        Deprecate Gtk::Container::resize_children().
diff --git a/tools/gen_scripts/gdk_generate_docs.sh b/tools/gen_scripts/gdk_generate_docs.sh
index 307b0dd..787d6b7 100755
--- a/tools/gen_scripts/gdk_generate_docs.sh
+++ b/tools/gen_scripts/gdk_generate_docs.sh
@@ -1,8 +1,8 @@
 #!/bin/bash
 
-# Note that 
-# JHBUILD_SOURCES should be defined to contain the path to the root of the
-# jhbuild sources. The XML files will be placed in gdk/src.
+# Note that JHBUILD_SOURCES should be defined to contain the path to the root
+# of the jhbuild sources. The script assumes that it resides in the
+# tools/gen_scripts/ directory and the XML file will be placed in gdk/src.
 
 if [ -z "$JHBUILD_SOURCES" ]; then
   echo -e "JHBUILD_SOURCES must contain the path to the jhbuild sources."
diff --git a/tools/gen_scripts/gdk_generate_enums.sh b/tools/gen_scripts/gdk_generate_enums.sh
index 4aee5d4..5515b0d 100755
--- a/tools/gen_scripts/gdk_generate_enums.sh
+++ b/tools/gen_scripts/gdk_generate_enums.sh
@@ -1,8 +1,8 @@
 #!/bin/bash
 
-# Note that 
-# JHBUILD_SOURCES should be defined to contain the path to the root of the
-# jhbuild sources. The defs files will be placed in gdk/src.
+# Note that JHBUILD_SOURCES should be defined to contain the path to the root
+# of the jhbuild sources. The script assumes that it resides in the
+# tools/gen_scripts/ directory and the defs file will be placed in gdk/src.
 
 if [ -z "$JHBUILD_SOURCES" ]; then
   echo -e "JHBUILD_SOURCES must contain the path to the jhbuild sources."
diff --git a/tools/gen_scripts/gdk_generate_extra_defs.sh b/tools/gen_scripts/gdk_generate_extra_defs.sh
index 1820165..1553028 100755
--- a/tools/gen_scripts/gdk_generate_extra_defs.sh
+++ b/tools/gen_scripts/gdk_generate_extra_defs.sh
@@ -1,7 +1,7 @@
 #!/bin/bash
 
 # The script assumes that it resides in the tools/gen_scripts directory
-# and the defs files will be placed in gdk/src.
+# and the defs file will be placed in gdk/src.
 
 ROOT_DIR="$(dirname "$0")/../.."
 GEN_DIR="$ROOT_DIR/tools/extra_defs_gen"
diff --git a/tools/gen_scripts/gdk_generate_methods.sh b/tools/gen_scripts/gdk_generate_methods.sh
index 4aec78c..7c98c81 100755
--- a/tools/gen_scripts/gdk_generate_methods.sh
+++ b/tools/gen_scripts/gdk_generate_methods.sh
@@ -1,8 +1,8 @@
 #!/bin/bash
 
-# Note that 
-# JHBUILD_SOURCES should be defined to contain the path to the root of the
-# jhbuild sources. The defs files will be placed in gdk/src.
+# Note that JHBUILD_SOURCES should be defined to contain the path to the root
+# of the jhbuild sources. The script assumes that it resides in the
+# tools/gen_scripts/ directory and the defs file will be placed in gdk/src.
 
 if [ -z "$JHBUILD_SOURCES" ]; then
   echo -e "JHBUILD_SOURCES must contain the path to the jhbuild sources."
diff --git a/tools/gen_scripts/gtk_generate_docs.sh b/tools/gen_scripts/gtk_generate_docs.sh
index d49b611..da7557f 100755
--- a/tools/gen_scripts/gtk_generate_docs.sh
+++ b/tools/gen_scripts/gtk_generate_docs.sh
@@ -1,8 +1,8 @@
 #!/bin/bash
 
-# Note that 
-# JHBUILD_SOURCES should be defined to contain the path to the root of the
-# jhbuild sources. The XML files will be placed in gtk/src.
+# Note that JHBUILD_SOURCES should be defined to contain the path to the root
+# of the jhbuild sources. The script assumes that it resides in the
+# tools/gen_scripts/ directory and the XML file will be placed in gtk/src.
 
 if [ -z "$JHBUILD_SOURCES" ]; then
   echo -e "JHBUILD_SOURCES must contain the path to the jhbuild sources."
diff --git a/tools/gen_scripts/gtk_generate_enums.sh b/tools/gen_scripts/gtk_generate_enums.sh
index d4c0a66..f7dda1e 100755
--- a/tools/gen_scripts/gtk_generate_enums.sh
+++ b/tools/gen_scripts/gtk_generate_enums.sh
@@ -1,8 +1,8 @@
 #!/bin/bash
 
-# Note that 
-# JHBUILD_SOURCES should be defined to contain the path to the root of the
-# jhbuild sources. The defs files will be placed in gtk/src.
+# Note that JHBUILD_SOURCES should be defined to contain the path to the root
+# of the jhbuild sources. The script assumes that it resides in the
+# tools/gen_scripts/ directory and the defs file will be placed in gtk/src.
 
 if [ -z "$JHBUILD_SOURCES" ]; then
   echo -e "JHBUILD_SOURCES must contain the path to the jhbuild sources."
diff --git a/tools/gen_scripts/gtk_generate_methods.sh b/tools/gen_scripts/gtk_generate_methods.sh
index ad272c3..6239ccf 100755
--- a/tools/gen_scripts/gtk_generate_methods.sh
+++ b/tools/gen_scripts/gtk_generate_methods.sh
@@ -1,8 +1,8 @@
 #!/bin/bash
 
-# Note that 
-# JHBUILD_SOURCES should be defined to contain the path to the root of the
-# jhbuild sources. The defs files will be placed in gtk/src.
+# Note that JHBUILD_SOURCES should be defined to contain the path to the root
+# of the jhbuild sources. The script assumes that it resides in the
+# tools/gen_scripts/ directory and the defs file will be placed in gtk/src.
 
 if [ -z "$JHBUILD_SOURCES" ]; then
   echo -e "JHBUILD_SOURCES must contain the path to the jhbuild sources."


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