summaryrefslogtreecommitdiff
path: root/createdirdeps
diff options
context:
space:
mode:
authory0169.zhang <y0169.zhang@samsung.com>2017-02-04 12:26:04 +0900
committeryang.zhang <y0169.zhang@samsung.com>2017-03-07 13:22:53 +0800
commit1cc3a774314d399828d2b13d9473c85c44036a06 (patch)
tree5b9f5dcacf06d6a7e42500e76c2fa11f43f7d7c8 /createdirdeps
parent3b11782dd280039bbf874f8f009b5e4a19f7bfd4 (diff)
downloadbuild-1cc3a774314d399828d2b13d9473c85c44036a06.tar.gz
build-1cc3a774314d399828d2b13d9473c85c44036a06.tar.bz2
build-1cc3a774314d399828d2b13d9473c85c44036a06.zip
Fix deps file order error
Change-Id: Ic8624d3b6ed9010a8f0c281e04c5669759e87eb4
Diffstat (limited to 'createdirdeps')
-rwxr-xr-xcreatedirdeps4
1 files changed, 2 insertions, 2 deletions
diff --git a/createdirdeps b/createdirdeps
index aa602ab..49bf09e 100755
--- a/createdirdeps
+++ b/createdirdeps
@@ -51,7 +51,7 @@ my %old;
if (defined($oldfile) && open(F, '<', $oldfile)) {
while (<F>) {
chomp;
- $old{$1} = $_ if /^([PRrCOI]:[^ ]+): /;
+ $old{$1} = $_ if /^([PRrsCOI]:[^ ]+): /;
}
close F;
}
@@ -78,7 +78,7 @@ for my $dir (@ARGV) {
next if $seen{$idx};
$seen{$idx} = 1;
print "F:$idx: $path\n";
- for (qw{P R C O I r s}) {
+ for (qw{P R r s C O I}) {
print $old{"$_:$idx"}."\n" if $old{"$_:$idx"};
}
next;