From b401be801c31dde56e0818241efeeabc3b1243eb Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 29 Jul 2013 16:37:31 -0400 Subject: Feature: Add --noalign to disable permission alignment --- ipsbuild.py | 1 + 1 file changed, 1 insertion(+) (limited to 'ipsbuild.py') diff --git a/ipsbuild.py b/ipsbuild.py index b7ba895..597d41b 100755 --- a/ipsbuild.py +++ b/ipsbuild.py @@ -23,6 +23,7 @@ parser = argparse.ArgumentParser(description='Build Solaris 11 packages from .ip parser.add_argument('--version', action="store_true", help='Show version information') parser.add_argument('--verbose', action="store_true", help='Increased verbosity') parser.add_argument('--nodepsolve', action="store_true", help='Disable dependency resolution') +parser.add_argument('--noalign', action="store_true", help='Disable permission alignment') parser.add_argument('--lint', action="store_true", help='Enables deep packaging checks') parser.add_argument('--fast', action="store_true", help='Use system tools to extract source archive') parser.add_argument('spec', nargs='*', help='An ipsutils spec file') -- cgit