summaryrefslogtreecommitdiff
path: root/check-strings.pl
diff options
context:
space:
mode:
authorDarin Adler <darin@src.gnome.org>2001-02-28 22:10:35 +0000
committerDarin Adler <darin@src.gnome.org>2001-02-28 22:10:35 +0000
commit7605ce7bed18fa5433a13fff83cc758b38feab73 (patch)
tree91e7ba6c816d6fa863eab7baf941b0ff7ab13b4c /check-strings.pl
parentf9f267e84c4d5aa279520e931a8c0b65233d7466 (diff)
downloadnautilus-7605ce7bed18fa5433a13fff83cc758b38feab73.tar.gz
Tweaks to just-checked-in stuff.
* check-strings-functions: * check-strings.pl: Tweaks to just-checked-in stuff. * src/nautilus-first-time-druid.c: Fix build by getting rid of incorrect use of stringize macro.
Diffstat (limited to 'check-strings.pl')
-rwxr-xr-xcheck-strings.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/check-strings.pl b/check-strings.pl
index 4a7414795..844c4e8c9 100755
--- a/check-strings.pl
+++ b/check-strings.pl
@@ -42,7 +42,7 @@ sub found_string;
# read in file with functions for which no translation is needed
my @no_translation_needed_functions;
-open FUNCTIONS, "po/check-strings-functions";
+open FUNCTIONS, "check-strings-functions" or die "can't open functions file";
while (<FUNCTIONS>)
{
chomp;
@@ -56,7 +56,7 @@ my $no_translation_needed_function_pattern = "^" . (join "|", @no_translation_ne
# read in file with patterns for which no translation is needed
my @no_translation_needed_patterns;
-open STRINGS, "check-strings-patterns";
+open STRINGS, "check-strings-patterns" or die "can't open patterns file";
while (<STRINGS>)
{
chomp;