* Markus Steinborn <gnugv_maintai...@yahoo.de> [100602 17:14]: >> - create the directory on install time >> > done
+ -mkdir "$(DESTDIR)$(pkgdatadir)/safe-gs-workdir" please use mkdir -p instead of -mkdir. (for example via $(MKDIR_P)) Ignoring errors is not that nice and when using DESTDIR the next command can fail because nothing garantees $(DESTDIR)$(pkgdatadir) already exists, so the mkdir could not create the subdirectory. Bernhard R. Link