summaryrefslogtreecommitdiff
path: root/postprocess/packconfig
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-04-25 11:13:36 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-09-28 08:48:17 +0100
commitdf5e8df4598c27a348dac30557535ec9205e3c04 (patch)
treead9f1c94a8061437efa348d66ae769c6bc379b2d /postprocess/packconfig
parent506d096eefa8931de435bd42ed4e4a6abe3bf369 (diff)
validate and pack .ui files as well as .xml files
Diffstat (limited to 'postprocess/packconfig')
-rw-r--r--postprocess/packconfig/packconfig.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/postprocess/packconfig/packconfig.pl b/postprocess/packconfig/packconfig.pl
index fb024f82d08f..924dee9f7bc9 100644
--- a/postprocess/packconfig/packconfig.pl
+++ b/postprocess/packconfig/packconfig.pl
@@ -124,7 +124,7 @@ sub wanted
{
my $file = $_;
- if ( $file =~ /.*\.xml$/ && -f $file ) {
+ if ( $file =~ /.*\.(ui|xml)$/ && -f $file ) {
push @main::file_list, $File::Find::name;
}
}