summaryrefslogtreecommitdiffstats
path: root/abuild-fetch.c
Commit message (Collapse)AuthorAgeFilesLines
* abuild-fetch.c: remove saveas- syntaxtmpfile2017-06-211-3/+0
|
* abuild-fetch: fix -Wformat-security warningsNatanael Copa2016-05-201-3/+3
|
* abuild-fetch: retry to create lock on ESTALENatanael Copa2016-05-161-2/+10
|
* abuild-fetch: use _exit after execvpNatanael Copa2016-03-101-1/+1
|
* abuild-fetch: add missing headerAndrew Wilcox2015-10-081-0/+1
|
* abuild: fix fetch lock file on nfsNatanael Copa2015-08-261-0/+194
flock(2) on an NFS mount will on the server side convert the lock to a POSIX lock (fcntl(F_SETLK)). This means that abuild running on NFS server and client will create different locks and they will both try download same file at same time. We fix this by creating a small abuild-fetch application that will create a POSIX lock which works with NFS.