summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Bagnall <douglas.bagnall@catalyst.net.nz>2020-02-02 16:05:38 +1300
committerKarolin Seeger <kseeger@samba.org>2020-02-20 10:32:15 +0000
commitda44630885eb51f54c4814dcac1c94f11a149642 (patch)
treeb7427a80f97a4bad4c5c9dbad3f6d3468c049580
parent339566feb72edc3b1fc39d2c7fb5bf05c11a88a5 (diff)
downloadsamba-da44630885eb51f54c4814dcac1c94f11a149642.tar.gz
pidl/wscript: configure should insist on Parse::Yapp::Driver
following 83ffe6752d589180eac96d7b8e7d1a54e3476bfd, you get a build error if you lack a system perl Parse::Yapp. Let's make it a configure failure instead. BUG: https://bugzilla.samba.org/show_bug.cgi?id=14284 Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Sun Feb 2 10:09:11 UTC 2020 on sn-devel-184 (cherry picked from commit af47a77673f58cc6436798b250c90be0e325d20e)
-rw-r--r--pidl/wscript10
1 files changed, 7 insertions, 3 deletions
diff --git a/pidl/wscript b/pidl/wscript
index d1b8278990a..88cb9132fd6 100644
--- a/pidl/wscript
+++ b/pidl/wscript
@@ -2,7 +2,7 @@
import os, string
from samba_utils import MODE_755
-from waflib import Logs
+from waflib import Logs, Errors
# This function checks if a perl module is installed on the system.
def check_system_perl_module(conf, module, version=None):
@@ -30,10 +30,14 @@ def options(opt):
def configure(conf):
# Check if perl(Parse::Yapp::Driver) is available.
- check_system_perl_module(conf, "Parse::Yapp::Driver", 1.05)
+ if not check_system_perl_module(conf,
+ "Parse::Yapp::Driver",
+ 1.05):
+ raise Errors.WafError('perl module "Parse::Yapp::Driver" not found')
# yapp is used for building the parser
- conf.find_program('yapp', var='YAPP')
+ if not conf.find_program('yapp', var='YAPP'):
+ raise Errors.WafError('yapp not found')
def build(bld):