Lines Matching refs:item
119 foreach ($list as $item) {
120 if (empty($item)) {
122 } elseif (!is_file($source_dir . DIRECTORY_SEPARATOR . $item)) {
123 echo "WARNING: $item not found\n";
127 echo "Copying $item from $source_dir to $dest_dir\n";
128 copy($source_dir . DIRECTORY_SEPARATOR . $item, $dest_dir . DIRECTORY_SEPARATOR . $item);
130 $itemdb = preg_replace("/\.(exe|dll|lib)$/i", ".pdb", $item);
135 if (preg_match("/\.(exe|dll)$/i", $item)) {
136 get_depends($source_dir . '/' . $item);
509 foreach ($items as $item) {
510 $bi = basename($item);
511 if (is_dir($item)) {
517 copy_dir($item, "$dist_dir/$bi");
521 copy_dir($item, "$dist_dir/extras/$bi");
526 copy($item, "$dist_dir/$bi");
529 copy($item, "$dist_dir/extras/$bi");
537 foreach ($items as $item) {
538 $bi = basename($item);
539 if (is_dir($item)) {
540 copy_dir($item, "$dist_dir/$bi");
541 copy_dir($item, "$dist_dir/ext/$bi");