Changeset 570
- Timestamp:
- Mar 14, 2008, 4:12:40 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Makefile.am
r569 r570 52 52 53 53 if HAVE_SVN_WC 54 subversion_info.cc: subversion_info.cc.tmp54 @srcdir@/subversion_info.cc: subversion_info.cc.tmp 55 55 @$(SHELL) @top_srcdir@/build_support/move-if-change subversion_info.cc.tmp \ 56 subversion_info.cc56 @srcdir@/subversion_info.cc 57 57 58 58 subversion_info.cc.tmp: FORCE … … 61 61 year=`svn info $(top_srcdir)|$(SED) -n 's/.*Date: \(.*\)-..-.*/\1/p'`;\ 62 62 $(SED) -e 's/sub_2_svn_revision/'$$revision'/g' \ 63 -e 's/sub_2_svn_year/'$$year'/g' subversion_info.cc.in >> $@ ;63 -e 's/sub_2_svn_year/'$$year'/g' @srcdir@/subversion_info.cc.in >> $@ ; 64 64 endif 65 65 -
trunk/test/check_repo_status.sh.in
r568 r570 5 5 6 6 # Copyright (C) 2007 Jari Häkkinen, Peter Johansson 7 # Copyright (C) 2008 Peter Johansson 7 8 # 8 9 # This file is part of svndigest, http://trac.thep.lu.se/svndigest … … 27 28 28 29 # retrieve last revision in test repository 29 rev=`cat repo/db/current`30 rev=`cat @srcdir@/repo/db/current` 30 31 rev=${rev%% *} 31 32 32 33 # check if the last test revision is a part of the svndigest repository 33 status_return=`svn status -v repo/db/revs/$rev`34 status_return=`svn status -v @srcdir@/repo/db/revs/$rev` 34 35 # logic: (file does not exist) || (file exists but not in revision control) 35 36 if [[ ${#status_return} -eq 0 || ${status_return:0:1} = "?" ]]; then … … 50 51 echo "ERROR: svn add test/repo/db/revs/$rev test/repo/db/revprops/$rev" 51 52 let rev-- 52 status_return=`svn status -v repo/db/revs/$rev`53 status_return=`svn status -v @srcdir@/repo/db/revs/$rev` 53 54 done 54 55
Note: See TracChangeset
for help on using the changeset viewer.