Changeset 518
- Timestamp:
- Dec 1, 2016, 6:51:04 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.in
r495 r518 578 578 @$(mkinstalldirs) $(DESTDIR)$(mylockdir) 579 579 @$(mkinstalldirs) $(DESTDIR)$(mylogdir) 580 @$(mkinstalldirs) $(DESTDIR)$(mydatadir); \ 581 chmod 700 $(DESTDIR)$(mydatadir) 580 @if test -d $(DESTDIR)$(mydatadir); then \ 581 :; \ 582 else \ 583 $(mkinstalldirs) $(DESTDIR)$(mydatadir); \ 584 chmod 755 $(DESTDIR)$(mydatadir); \ 585 fi 582 586 @if test -f samhainrc.$(selectconfig); then \ 583 587 :; \ -
trunk/docs/Changelog
r516 r518 1 4.2.1: 2 * fix documentation typo ('make deploy-install' -> 3 'make install-deploy', reported by Ben) 4 * fix dsys/funcINSTALL: proper error message if no binary 5 packages built yet (problem reported by Ben) 6 * fix install-data: make datadir chmod conditional and 7 align with documentation 8 1 9 4.2.0: 2 10 * fix handle tracefs (permission for stat denied) when running -
trunk/dsys/funcINSTALL
r38 r518 400 400 command="$command other" 401 401 fi 402 if test $n -eq 0 403 then 404 printFATAL "No binary packages built yet !" 405 fi 402 406 403 407 eval ${command}
Note:
See TracChangeset
for help on using the changeset viewer.