Changeset 573


Ignore:
Timestamp:
12/19/2011 18:32:49 (5 months ago)
Author:
ccowart
Message:

Mocking up a hook that simply checks to see if confman:version revprop is
set.

See #152.

Location:
trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        1818confman.conf.sample 
        1919confman_completion 
         20confman_precommit 
        2021confmancommon.sh 
        2122confmanlib.sh 
  • trunk/Makefile.am

    r462 r573  
    1010 
    1111sbin_SCRIPTS = confman confadmin 
    12 pkglibexec_SCRIPTS = confexport confsync confaudit conflock abspath 
     12pkglibexec_SCRIPTS = confexport \ 
     13                                         confsync \ 
     14                                         confaudit \ 
     15                                         conflock \ 
     16                                         abspath \ 
     17                                         confman_precommit 
    1318pkgdata_SCRIPTS = confmancommon.sh confmanlib.sh  
    1419dist_pkgdata_SCRIPTS = confmandoc.sh confadmindoc.sh 
     
    3944                confaudit.in \ 
    4045                conflock.in \ 
     46                confman_precommit.in \ 
    4147                confmancommon.sh.in \ 
    4248                confmanlib.sh.in \ 
     
    6066                -e 's,[@]SUDO[@],$(SUDO),g' \ 
    6167                -e 's,[@]SVN[@],$(SVN),g' \ 
     68                -e 's,[@]SVNLOOK[@],$(SVNLOOK),g' \ 
    6269                -e 's,[@]GREADLINK[@],$(GREADLINK),g' \ 
    6370                -e 's,[@]WGET[@],$(WGET),g' \ 
     
    9299        chmod +x abspath 
    93100 
     101confman_precommit: confman_precommit.in Makefile 
     102        $(do_subst) < confman_precommit.in > confman_precommit 
     103        chmod +x confman_precommit 
     104 
    94105confmanlib.sh: confmanlib.sh.in Makefile 
    95106        $(do_subst) < confmanlib.sh.in > confmanlib.sh 
  • trunk/configure.ac

    r390 r573  
    88AC_PATH_PROG([BASH_SHELL], [bash]) 
    99AC_PATH_PROG([SVN], [svn]) 
     10AC_PATH_PROG([SVNLOOK], [svnlook]) 
    1011AC_PATH_PROG([SUDO], [sudo]) 
    1112AC_PATH_PROG([GREADLINK], [greadlink]) 
Note: See TracChangeset for help on using the changeset viewer.