5da2c444ef
2. fixed several erros in filelist.txt 3. regenarated everything git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10639 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
31 lines
1.0 KiB
Perl
31 lines
1.0 KiB
Perl
#!################################################################################
|
|
#! File: base.t
|
|
#! Purpose: tmake template file from which src/rpmfiles.lst containing the
|
|
#! list of files for wxBase.spec RPM generation script is generated
|
|
#! Author: Vadim Zeitlin
|
|
#! Created: 28.01.00
|
|
#! Version: $Id$
|
|
#!################################################################################
|
|
#${
|
|
IncludeTemplate("filelist.t");
|
|
|
|
foreach $file (sort keys %wxWXINCLUDE) {
|
|
next unless $wxWXINCLUDE{$file} =~ /\bB\b/;
|
|
|
|
$project{"BASE_HEADERS"} .= "include/wx/" . $file . " "
|
|
}
|
|
|
|
foreach $file (sort keys %wxUNIXINCLUDE) {
|
|
next unless $wxUNIXINCLUDE{$file} =~ /\bB\b/;
|
|
|
|
$project{"BASE_HEADERS"} .= "include/wx/unix/" . $file . " "
|
|
}
|
|
|
|
foreach $file (sort keys %wxPROTOCOLINCLUDE) {
|
|
next unless $wxPROTOCOLINCLUDE{$file} =~ /\bB\b/;
|
|
|
|
$project{"BASE_HEADERS"} .= "include/wx/protocol/" . $file . " "
|
|
}
|
|
#$}
|
|
#$ ExpandGlue("BASE_HEADERS", "/usr/", "\n/usr/", "");
|