Message-Id: <
980601120547.20617d54@cedar.osshe.edu>
Subject: [PATCH 5.004_66] Fix problem with SDBM makefile on VMS
p4raw-id: //depot/perl@1090
}
sub MY::top_targets {
- '
+ my $r = '
all :: static
$(NOECHO) $(NOOP)
lint:
lint -abchx $(LIBSRCS)
+';
+ $r .= '
# This is a workaround, the problem is that our old GNU make exports
# variables into the environment so $(MYEXTLIB) is set in here to this
# value which can not be built.
sdbm/libsdbm.a:
- true
-';
+ $(NOECHO) $(NOOP)
+' unless $^O eq 'VMS';
+
+ return $r;
}