8000 Add project notice to meta.php and fix Darwin detection in update-dat… · symfony/symfony@47a32f1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 47a32f1

Browse files
committed
Add project notice to meta.php and fix Darwin detection in update-data.php script
1 parent b64e63e commit 47a32f1

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/Symfony/Component/Intl/Resources/bin/update-data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
}
161161

162162
$genrb = $buildDir.'/bin/genrb';
163-
if (PHP_OS === 'Darwin') {
163+
if (\PHP_OS === 'Darwin') {
164164
$genrbEnv = 'DYLD_LIBRARY_PATH='.$buildDir.'/lib ';
165165
} else {
166166
$genrbEnv = 'LD_LIBRARY_PATH='.$buildDir.'/lib ';

src/Symfony/Component/Intl/Resources/data/languages/meta.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
return [
413
'Languages' => [
514
'aa',

0 commit comments

Comments
 (0)
0