comparison maintainer-scripts/gcc_release @ 63:b7f97abdc517 gcc-4.6-20100522

update gcc from gcc-4.5.0 to gcc-4.6
author ryoma <e075725@ie.u-ryukyu.ac.jp>
date Mon, 24 May 2010 12:47:05 +0900
parents 77e2b8dfacca
children f6334be47118
comparison
equal deleted inserted replaced
56:3c8a44c06a95 63:b7f97abdc517
7 # Date: 2001-05-25 7 # Date: 2001-05-25
8 # 8 #
9 # Contents: 9 # Contents:
10 # Script to create a GCC release. 10 # Script to create a GCC release.
11 # 11 #
12 # Copyright (c) 2001, 2002, 2006, 2009 Free Software Foundation. 12 # Copyright (c) 2001, 2002, 2006, 2009, 2010 Free Software Foundation.
13 # 13 #
14 # This file is part of GCC. 14 # This file is part of GCC.
15 # 15 #
16 # GCC is free software; you can redistribute it and/or modify 16 # GCC is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by 17 # it under the terms of the GNU General Public License as published by
274 changedir "${WORKING_DIRECTORY}" 274 changedir "${WORKING_DIRECTORY}"
275 275
276 # The GNU Coding Standards specify that all files should 276 # The GNU Coding Standards specify that all files should
277 # world readable. 277 # world readable.
278 chmod -R a+r ${SOURCE_DIRECTORY} 278 chmod -R a+r ${SOURCE_DIRECTORY}
279 # And that all directories have mode 777. 279 # And that all directories have mode 755.
280 find ${SOURCE_DIRECTORY} -type d -exec chmod 777 {} \; 280 find ${SOURCE_DIRECTORY} -type d -exec chmod 755 {} \;
281 281
282 # Build one huge tarfile for the entire distribution. 282 # Build one huge tarfile for the entire distribution.
283 build_tarfile gcc-${RELEASE} `basename ${SOURCE_DIRECTORY}` 283 build_tarfile gcc-${RELEASE} `basename ${SOURCE_DIRECTORY}`
284 284
285 # Now, build one for each of the languages. 285 # Now, build one for each of the languages.