rhboot / fwupdate

System firmware update support for UEFI machines
99 stars 47 forks source link

Race condition in parallel make install #102

Closed ArchangeGabriel closed 6 years ago

ArchangeGabriel commented 6 years ago

From one run to another, I can get a failure because of this:

install -m 644 libfwup.h.3 /build/fwupdate/pkg/fwupdate/usr/share/man/man3/libfwup.h.3
install -d -m 755 /build/fwupdate/pkg/fwupdate/usr/share/man/man3/
install -m 644 libfwup.3 /build/fwupdate/pkg/fwupdate/usr/share/man/man3/libfwup.3
install: cannot create regular file '/build/fwupdate/pkg/fwupdate/usr/share/man/man3/libfwup.h.3': No such file or directory

The man3 folder should be created before trying to install things inside, and apparently this might not be the case some times. ;)

superm1 commented 6 years ago

Closed by 4869af0