Changeset 518 for trunk


Ignore:
Timestamp:
Dec 1, 2016, 6:51:04 PM (8 years ago)
Author:
katerina
Message:

Fix for ticket #412 and ticket #413.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile.in

    r495 r518  
    578578        @$(mkinstalldirs) $(DESTDIR)$(mylockdir)
    579579        @$(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
    582586        @if test -f samhainrc.$(selectconfig); then \
    583587                :; \
  • trunk/docs/Changelog

    r516 r518  
     14.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
    194.2.0:
    210        * fix handle tracefs (permission for stat denied) when running
  • trunk/dsys/funcINSTALL

    r38 r518  
    400400           command="$command other"
    401401        fi
     402        if test $n -eq 0
     403        then
     404            printFATAL "No binary packages built yet !"
     405        fi
    402406           
    403407        eval ${command}
Note: See TracChangeset for help on using the changeset viewer.