summaryrefslogtreecommitdiff
path: root/ext/SDBM_File/sdbm
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-07-17 20:47:44 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-07-17 20:47:44 +0000
commit2c08089c66da191f6b81e0bb31996095180cb48c (patch)
tree4e7fcda8ce3b1d205f8b5b89d64338373d891557 /ext/SDBM_File/sdbm
parent0a574d6e232d3c652ebdcf1bd17c739c4373b905 (diff)
downloadperl-2c08089c66da191f6b81e0bb31996095180cb48c.tar.gz
noecho noops (from Nicholas Clark <nick@flirble.org>)
p4raw-id: //depot/perl@3688
Diffstat (limited to 'ext/SDBM_File/sdbm')
-rw-r--r--ext/SDBM_File/sdbm/Makefile.PL8
1 files changed, 5 insertions, 3 deletions
diff --git a/ext/SDBM_File/sdbm/Makefile.PL b/ext/SDBM_File/sdbm/Makefile.PL
index e6fdcf9306..4453dea1fd 100644
--- a/ext/SDBM_File/sdbm/Makefile.PL
+++ b/ext/SDBM_File/sdbm/Makefile.PL
@@ -42,12 +42,14 @@ INST_STATIC = libsdbm$(LIB_EXT)
}
sub MY::top_targets {
+ my $noecho = shift->{NOECHO};
+
my $r = '
all :: static
- $(NOECHO) $(NOOP)
+ ' . $noecho . '$(NOOP)
config ::
- $(NOECHO) $(NOOP)
+ ' . $noecho . '$(NOOP)
lint:
lint -abchx $(LIBSRCS)
@@ -58,7 +60,7 @@ lint:
# variables into the environment so $(MYEXTLIB) is set in here to this
# value which can not be built.
sdbm/libsdbm.a:
- $(NOECHO) $(NOOP)
+ ' . $noecho . '$(NOOP)
' unless $^O eq 'VMS';
return $r;