summaryrefslogtreecommitdiff
path: root/ACE/bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm')
-rw-r--r--ACE/bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm18
1 files changed, 0 insertions, 18 deletions
diff --git a/ACE/bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm b/ACE/bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm
index 635cd48bb7d..66faed32dd0 100644
--- a/ACE/bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm
+++ b/ACE/bin/MakeProjectCreator/modules/GNUACEProjectCreator.pm
@@ -52,24 +52,6 @@ sub fill_value {
return 'VPATH = .:' . $str . $self->crlf();
}
}
- elsif ($name eq 'tao') {
- my($incs) = $self->get_assignment('includes');
- my($libs) = $self->get_assignment('libpaths');
- return ((defined $incs && $incs =~ /tao/i) ||
- (defined $libs && $libs =~ /tao/i));
- }
- elsif ($name eq 'ciao') {
- my($incs) = $self->get_assignment('includes');
- my($libs) = $self->get_assignment('libpaths');
- return ((defined $incs && $incs =~ /ciao/i) ||
- (defined $libs && $libs =~ /ciao/i));
- }
- elsif ($name eq 'dance') {
- my($incs) = $self->get_assignment('includes');
- my($libs) = $self->get_assignment('libpaths');
- return ((defined $incs && $incs =~ /DAnCE/i) ||
- (defined $libs && $libs =~ /DAnCE/i));
- }
elsif ($name eq 'genins') {
my $ins = '';
$self->get_install_info(sub { $ins .= '#' . $_[0] });