configure: Don't hide any perl scripts being run

This commit is contained in:
Michael Davidsaver
2019-03-06 16:14:55 -08:00
parent 834e202671
commit 3e8f3a1ee9

View File

@@ -190,7 +190,7 @@ endif
checkRelease:
+$(CONVERTRELEASE) checkRelease
warnRelease:
-$(CONVERTRELEASE) checkRelease
$(CONVERTRELEASE) checkRelease
noCheckRelease:
ifeq ($(EPICS_HOST_ARCH),$(T_A))
$(info Warning: RELEASE file consistency checks have been disabled)
@@ -346,7 +346,7 @@ $(MODNAME): %$(MODEXT): %$(EXE)
runtests: $(TESTSCRIPTS)
ifdef RUNTESTS_ENABLED
-$(PERL) -MTest::Harness -e 'runtests @ARGV if @ARGV;' $^
$(PERL) -MTest::Harness -e 'runtests @ARGV if @ARGV;' $^
endif
testspec: $(TESTSCRIPTS)
@@ -381,7 +381,7 @@ junitfiles: $(JUNITFILES)
# A .tap file is the output from running the associated test script
%.tap: %.t
ifdef RUNTESTS_ENABLED
-$(PERL) $< -tap > $@
$(PERL) $< -tap > $@
endif
%.xml: %.tap