- Timestamp:
- Jan 9, 2009, 11:23:49 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r744 r748 175 175 test_repo_found="yes"], 176 176 [test_repo_found="no"]) 177 AC_SUBST([test_repo_found]) 177 178 if (test "$test_repo_found" = "yes"); then 178 179 dnl test repo is not distributed -
trunk/test/test_repo.sh.in
r744 r748 22 22 # along with svndigest. If not, see <http://www.gnu.org/licenses/>. 23 23 24 rootdir=@abs_builddir@/toy_project 25 targetdir=@abs_builddir@/generated_output 24 abs_top_builddir=@abs_top_builddir@ 25 abs_builddir=@abs_builddir@ 26 rootdir=$abs_builddir/toy_project 27 targetdir=$abs_builddir/generated_output 26 28 27 test_repo_found= "@test_repo_found@"28 if test $test_repo_found = "no"; then29 test_repo_found=@test_repo_found@ 30 if test x$test_repo_found != xyes; then 29 31 exit 77; 30 32 fi 31 33 32 cd @abs_builddir@ && @SHELL@ svn_update.sh;34 cd $abs_builddir && @SHELL@ svn_update.sh || exit 1; 33 35 34 if [ ! -d $targetdir ]; then 35 mkdir $targetdir; 36 fi 36 @MKDIR_P@ $targetdir; 37 37 38 @abs_top_builddir@/bin/svndigest -r $rootdir -t $targetdir \38 $abs_top_builddir/bin/svndigest -r $rootdir -t $targetdir \ 39 39 --ignore-cache --no-report $1; 40 40 41 @abs_top_builddir@/bin/svndigest -r $rootdir -t $targetdir -f $1;41 $abs_top_builddir/bin/svndigest -r $rootdir -t $targetdir -f $1; 42 42
Note: See TracChangeset
for help on using the changeset viewer.