From fde45aafd78a58db5ae7940291bb14ca2fc3da2e Mon Sep 17 00:00:00 2001 From: Jeffrey Townsend Date: Thu, 5 Apr 2018 17:27:21 +0000 Subject: [PATCH] Disable ASR generation by default. Packages using ASR must be updated explicitly. --- tools/onlpm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/onlpm.py b/tools/onlpm.py index ab68bdae..523287f0 100755 --- a/tools/onlpm.py +++ b/tools/onlpm.py @@ -431,7 +431,7 @@ class OnlPackage(object): if self.pkg.get('init-after-remove', True): command = command + "--after-remove %s " % OnlPackageAfterRemoveScript(self.pkg['init'], dir=workdir).name - if self.pkg.get('asr', True): + if self.pkg.get('asr', False): with onlu.Profiler() as profiler: # Generate the ASR documentation for this package. sys.path.append("%s/sm/infra/tools" % os.getenv('ONL'))