--- intltool-update.in.orig 2007-01-26 01:43:29.000000000 +0900 +++ intltool-update.in 2007-01-26 01:43:39.000000000 +0900 @@ -64,7 +64,7 @@ "ui|". # Bonobo specific - User Interface desc. files "lang|". # ? "glade2?(?:\\.in)*|". # Glade specific - User Interface desc. files (Note: .in is not required) -"scm-workaround(?:\\.in)*|". # ? (Note: .in is not required) +"scm(?:\\.in)*|". # ? (Note: .in is not required) "oaf(?:\\.in)+|". # DEPRECATED: Replaces by Bonobo .server files "etspec|". # ? "server(?:\\.in)+|". # Bonobo specific @@ -248,7 +248,7 @@ { $gettext_type="glade"; } - elsif ($type =~ /scm-workaround(\.in)*$/) + elsif ($type =~ /scm(\.in)*$/) { $gettext_type="scheme"; } @@ -341,11 +341,11 @@ ## Check if we should ignore some found files, when ## comparing with POTFILES.in - foreach my $ignore ("$SRCDIR/POTFILES.skip", "$SRCDIR/POTFILES.ignore") + foreach my $ignore ("POTFILES.skip", "POTFILES.ignore") { (-s $ignore) or next; - if ("$ignore" eq "$SRCDIR/POTFILES.ignore") + if ("$ignore" eq "POTFILES.ignore") { print "The usage of POTFILES.ignore is deprecated. Please consider moving the\n". "content of this file to POTFILES.skip.\n"; @@ -506,7 +506,7 @@ foreach (@buf_potfiles_sorted) { chomp (my $dummy = $_); - if ("$dummy" ne "" and ! -f "$SRCDIR/../$dummy" and ! -f "../$dummy") + if ("$dummy" ne "" and ! -f "$SRCDIR/../$dummy") { push @buf_potfiles_notexist, $_; }