[libvtemm] Main makefile.am and docs fixes.



commit c6dd32b7d5b5e9b637761e7037ec0ce9eac441dd
Author: Krzesimir Nowak <krnowak svn gnome org>
Date:   Thu May 14 16:00:54 2009 +0200

    Main makefile.am and docs fixes.
    
    * Makefile.am: Fixed ChangeLog generation. HACKING and autogen.sh
    are now distributed.
    * src/libvtemm/cursorposition.h:
    * src/libvtemm/padding.h: Mention about class instead of struct.
---
 Makefile.am                   |    8 ++++----
 src/libvtemm/cursorposition.h |    2 +-
 src/libvtemm/padding.h        |    2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index bc761df..02eb5a0 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -7,7 +7,7 @@ DIST_SUBDIRS = $(SUBDIRS) scripts old_news_and_changelogs
 ACLOCAL_AMFLAGS = -I scripts
 
 EXTRA_DIST = build_shared/Makefile_shared.am_fragment \
-	build_shared/Makefile_sublib_shared.am_fragment COPYING.examples
+	build_shared/Makefile_sublib_shared.am_fragment COPYING.examples \
 	autogen.sh HACKING
 
 
@@ -24,13 +24,13 @@ dist-hook:
 	echo "* the tarball will _not_ contain the dependency rules    *"; \
 	echo "* generated by the compiler.                             *"; \
 	echo "**********************************************************"; \
-	echo; echo
-	@if test -d "$(srcdir)/.git"; \
+	echo; echo; \
+	if test -d "$(srcdir)/.git"; \
 	then \
 	        echo Creating ChangeLog && \
 	        ( cd "$(top_srcdir)" && \
 	          $(top_srcdir)/scripts/missing --run git log --date=short --pretty=format:"@@@@%cd  %an  <%ae>%n%n%s%n%n%b" | \
-	          perl -ne 'if (/^\s*$/) { if (!$blank) { print; $blank=1; } } else {$blank=0; if (!s/^@@@@// && !/^\t/) { print "\t"; } print; }') > ChangeLog.tmp \
+	          perl -ne 'if ( m/^\s*$$/ ) { if (!$$blank) { print; $$blank=1; } } else {$$blank=0; if (!s/^@@@@// && !/^\t/) { print "\t"; } print; }') > ChangeLog.tmp \
 	        && mv -f ChangeLog.tmp $(top_distdir)/ChangeLog \
 	        || ( rm -f ChangeLog.tmp ; \
 	             echo Failed to generate ChangeLog >&2 ); \
diff --git a/src/libvtemm/cursorposition.h b/src/libvtemm/cursorposition.h
index 3c5b7d1..9557894 100644
--- a/src/libvtemm/cursorposition.h
+++ b/src/libvtemm/cursorposition.h
@@ -26,7 +26,7 @@ namespace Gnome
 
 namespace Vte
 {
-/** CursorPosition - simple struct holding cursor position.
+/** CursorPosition - simple class holding cursor position.
  */
 class CursorPosition
 {
diff --git a/src/libvtemm/padding.h b/src/libvtemm/padding.h
index db4afa7..6bfc788 100644
--- a/src/libvtemm/padding.h
+++ b/src/libvtemm/padding.h
@@ -26,7 +26,7 @@ namespace Gnome
 
 namespace Vte
 {
-/** Padding - simple struct holding padding.
+/** Padding - simple class holding padding.
  */
 class Padding
 {



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