61 # |
61 # |
62 # Build Identifier. Used to indicate which build (or respin for |
62 # Build Identifier. Used to indicate which build (or respin for |
63 # the development build) of the Solaris Update is being built. |
63 # the development build) of the Solaris Update is being built. |
64 # This is set by the gatekeepers. |
64 # This is set by the gatekeepers. |
65 # |
65 # |
66 BUILDID ?= 116 |
66 BUILDID ?= 117 |
67 |
67 |
68 # Each (nightly) build of the code that produces packages needs to |
68 # Each (nightly) build of the code that produces packages needs to |
69 # be uniquely identified so that packages produced by different |
69 # be uniquely identified so that packages produced by different |
70 # builds can't be mixed. Mixing packages from different builds can |
70 # builds can't be mixed. Mixing packages from different builds can |
71 # easily result in broken global and nonglobal zones. Or at least |
71 # easily result in broken global and nonglobal zones. Or at least |
72 # that's the case in ON, which this is copied from. We keep it simple, |
72 # that's the case in ON, which this is copied from. We keep it simple, |
73 # though you could use something like this if you want: |
73 # though you could use something like this if you want: |
74 # |
74 # |
75 #NIGHTLYID ?= $(shell hg tip --template '{rev}\n') |
75 #NIGHTLYID ?= $(shell hg tip --template '{rev}\n') |
76 # |
76 # |
77 NIGHTLYID ?= 1 |
77 NIGHTLYID ?= 0 |
78 |
78 |
79 # |
79 # |
80 # Branch Identifier. Used in the version section of the package name to |
80 # Branch Identifier. Used in the version section of the package name to |
81 # identify the operating system branch that the package was produced for. |
81 # identify the operating system branch that the package was produced for. |
82 # |
82 # |