diff options
author | svntobi <svntobi@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2008-03-23 11:59:27 +0000 |
---|---|---|
committer | svntobi <svntobi@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2008-03-23 11:59:27 +0000 |
commit | 7045aa7616300c7ae605b6d01626f1e540902bda (patch) | |
tree | 3d6056b6138f4a674d7206d1b8270099093df2f7 | |
parent | f369caad4c4848f1c9bd85afbf0593a171f01363 (diff) | |
download | vdr-plugin-menuorg-7045aa7616300c7ae605b6d01626f1e540902bda.tar.gz vdr-plugin-menuorg-7045aa7616300c7ae605b6d01626f1e540902bda.tar.bz2 |
made version.h upper case
git-svn-id: file:///home/tobias/sandbox/vdr/--/vdr-pkg/vdr-pkg/menuorg/trunk@6971 cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rw-r--r-- | po/menuorg.pot | 2 | ||||
-rw-r--r-- | src/MenuOrgPlugin.cpp | 2 | ||||
-rw-r--r-- | src/Version.h (renamed from src/version.h) | 0 | ||||
-rwxr-xr-x | tools/release | 2 |
6 files changed, 5 insertions, 5 deletions
@@ -13,7 +13,7 @@ SVNROOT ?= svn+e-tobi://e-tobi.net/menuorg ### The version number of this plugin (taken from the main source file): -VERSION = $(shell grep 'static const char VERSION\[\] =' src/version.h | \ +VERSION = $(shell grep 'static const char VERSION\[\] =' src/Version.h | \ awk '{ print $$6 }' | sed -e 's/[";]//g') ### The C++ compiler and options: diff --git a/debian/control b/debian/control index 02ceba7..b407284 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: vdr-plugin-menuorg Section: misc Priority: extra Maintainer: Tobias Grimm <tg@e-tobi.net> -Build-Depends: debhelper (>= 5), cdbs, vdr-dev (>= 1.5.18), gettext, libxml++2.6-dev, libglibmm-2.4-dev +Build-Depends: debhelper (>= 5), cdbs, vdr-dev (>= 1.5.18), pkg-config, gettext, libxml++2.6-dev, libglibmm-2.4-dev Standards-Version: 3.7.2 Package: vdr-plugin-menuorg diff --git a/po/menuorg.pot b/po/menuorg.pot index 06a98b2..95f6e5d 100644 --- a/po/menuorg.pot +++ b/po/menuorg.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: <vdr@e-tobi.net>\n" -"POT-Creation-Date: 2008-03-23 02:10+0100\n" +"POT-Creation-Date: 2008-03-23 02:26+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" diff --git a/src/MenuOrgPlugin.cpp b/src/MenuOrgPlugin.cpp index 11762d3..7fd1da1 100644 --- a/src/MenuOrgPlugin.cpp +++ b/src/MenuOrgPlugin.cpp @@ -29,7 +29,7 @@ #include <iostream> #include <string> #include <getopt.h> -#include "version.h" +#include "Version.h" #include "MenuOrgPlugin.h" #include "MenuConfigurationRepository.h" #include "MainMenuItemsProvider.h" diff --git a/src/version.h b/src/Version.h index 30896b9..30896b9 100644 --- a/src/version.h +++ b/src/Version.h diff --git a/tools/release b/tools/release index d7c8e09..1e906c8 100755 --- a/tools/release +++ b/tools/release @@ -16,7 +16,7 @@ fi make dist # read version -VERSION=`grep 'static const char VERSION\[\] =' src/version.h | awk '{ print $6 }' | sed -e 's/[";]//g'` +VERSION=`grep 'static const char VERSION\[\] =' src/Version.h | awk '{ print $6 }' | sed -e 's/[";]//g'` # tag version echo "Tagging: $VERSION" |