From f52bd84514641563610f582b1d79bf7efa9ad640 Mon Sep 17 00:00:00 2001 From: sboyette Date: Mon, 17 Aug 2009 00:34:50 +0000 Subject: [PATCH] 'make' will now just plain make again without proceeding to install. Added Build to files swept by 'make clean' git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1741 9efc2488-bf62-4759-914b-345cdb29e865 --- src/perl/Makefile.am | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/perl/Makefile.am b/src/perl/Makefile.am index cd7b88b..8019e8c 100644 --- a/src/perl/Makefile.am +++ b/src/perl/Makefile.am @@ -11,14 +11,20 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. +CLEANFILES = Build DISTCLEANFILES = Makefile.in Makefile all: - perl Build.PL || make -s install-perl-fail + perl Build.PL || make -s build-perl-fail + ./Build || make -s build-perl-fail + ./Build test || make -s build-perl-fail -install-perl-fail: +install: + ./Build install + +build-perl-fail: echo - echo ">>> Installation of Perl modules has failed. The most likely" + echo ">>> Build/test of Perl modules has failed. The most likely" echo ">>> possibility is that a dependency is not pre-installed" echo ">>> or that a test has failed." echo ">>> See the messages above this one for more information." -- 2.43.2