Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8
提交
b7f05d80
D
dragonwell8
项目概览
openanolis
/
dragonwell8
通知
5
Star
3
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b7f05d80
编写于
12月 12, 2014
作者:
A
asaha
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
c697b588
977a61fb
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
18 addition
and
2 deletion
+18
-2
.hgtags
.hgtags
+2
-0
common/autoconf/generated-configure.sh
common/autoconf/generated-configure.sh
+16
-2
未找到文件。
.hgtags
浏览文件 @
b7f05d80
...
...
@@ -364,4 +364,6 @@ cf9afcfcb7a41b892fc896c1dbf245d5dcc42395 jdk8u40-b07
df659b8b0bc82214358e2f0ef340612011d5ed3b jdk8u40-b14
60d2bf063f7d8baa4e0954b6400aa6d30f9064f9 jdk8u40-b15
64790e9792f88fadd9d25eaf4dcba7e6e96664de jdk8u40-b16
e1c506c8e1db7356d120dd7d22b2c50276b6bcee jdk8u40-b17
83d1d42c3df409c87ef7cb0126343a009857ca71 jdk8u40-b18
ec4bcc6e4dcf190a165106627ed3eef1e7d94d0c jdk8u45-b00
common/autoconf/generated-configure.sh
浏览文件 @
b7f05d80
...
...
@@ -1026,6 +1026,7 @@ with_milestone
with_update_version
with_user_release_suffix
with_build_number
with_copyright_year
with_boot_jdk
with_boot_jdk_jvmargs
with_add_source_root
...
...
@@ -1776,6 +1777,7 @@ Optional Packages:
Add a custom string to the version string if build
number isn't set.[username_builddateb00]
--with-build-number Set build number value for build [b00]
--with-copyright-year Set copyright year value for build [current year]
--with-boot-jdk path to Boot JDK (used to bootstrap build) [probed]
--with-boot-jdk-jvmargs specify JVM arguments to be passed to all
invocations of the Boot JDK, overriding the default
...
...
@@ -3870,7 +3872,7 @@ fi
#CUSTOM_AUTOCONF_INCLUDE
# Do not change or remove the following line, it is needed for consistency checks:
DATE_WHEN_GENERATED=141
3192141
DATE_WHEN_GENERATED=141
6326200
###############################################################################
#
...
...
@@ -11282,7 +11284,19 @@ fi
COPYRIGHT_YEAR=`date +'%Y'`
# Check whether --with-copyright-year was given.
if test "${with_copyright_year+set}" = set; then :
withval=$with_copyright_year;
fi
if test "x$with_copyright_year" = xyes; then
as_fn_error $? "Copyright year must have a value" "$LINENO" 5
elif test "x$with_copyright_year" != x; then
COPYRIGHT_YEAR="$with_copyright_year"
else
COPYRIGHT_YEAR=`date +'%Y'`
fi
if test "x$JDK_UPDATE_VERSION" != x; then
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录