X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fwgtpkg-files.c;h=0b55670ae0a046f875b6dab9dbcf2d6cfaa279bd;hb=512e870e35747c6114e0dd5e0d94060b3b3cf6a5;hp=cce6a04b9a0608f47b306e1ab2da87cf073cd0fd;hpb=209fd4c8a7fff7ff0aadd915c072db8e14dc0375;p=src%2Fapp-framework-main.git diff --git a/src/wgtpkg-files.c b/src/wgtpkg-files.c index cce6a04..0b55670 100644 --- a/src/wgtpkg-files.c +++ b/src/wgtpkg-files.c @@ -25,6 +25,8 @@ #include #include #include +#include +#include #include "verbose.h" #include "wgtpkg-workdir.h" @@ -258,6 +260,7 @@ static int fill_files_rec(char name[PATH_MAX], unsigned offset) unsigned len; DIR *dir; struct dirent *ent; + struct stat st; fd = openat(workdirfd, offset ? name : ".", O_DIRECTORY|O_RDONLY); if (fd < 0) { @@ -286,6 +289,13 @@ static int fill_files_rec(char name[PATH_MAX], unsigned offset) return -1; } else { memcpy(name + offset, ent->d_name, 1+len); + if (ent->d_type == DT_UNKNOWN) { + fstatat(fd, ent->d_name, &st, 0); + if (S_ISREG(st.st_mode)) + ent->d_type = DT_REG; + else if (S_ISDIR(st.st_mode)) + ent->d_type = DT_DIR; + } switch (ent->d_type) { case DT_DIR: if (file_add_directory(name) == NULL) {