summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2013-05-16 15:27:54 +0300
committerTor Lillqvist <tml@iki.fi>2013-05-16 16:21:27 +0300
commitc2aac3b42e7122569770377091be502939fc9a26 (patch)
tree1737e10ea9fce74217d2cd361fcfaad64f8e05ba /solenv
parent7a6f5186a8e4089181f57af44fa4654fe692856b (diff)
Accept also symlinks: check for existence only
Change-Id: I89c0d24941de21f9be732fed80f499217f5c281b
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/modules/installer/filelists.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/filelists.pm b/solenv/bin/modules/installer/filelists.pm
index cd0bae6af5fc..a8937755b706 100644
--- a/solenv/bin/modules/installer/filelists.pm
+++ b/solenv/bin/modules/installer/filelists.pm
@@ -51,7 +51,7 @@ sub resolve_filelist_flag
{
installer::logger::print_error("file '$path' is not in '$outdir'");
}
- if (!-f $path)
+ if (!-e $path)
{
installer::logger::print_error("file '$path' does not exist");
}