|
|
|
@ -131,7 +131,6 @@ GENERATED FILES |
|
|
|
|
* ax_init_standard_project.m4 - auxiliary macro definition file |
|
|
|
|
* ax_cxx_compile_stdcxx.m4 - auxiliary macro definition file |
|
|
|
|
* ax_check_qt.m4 - auxiliary macro definition file |
|
|
|
|
* makefile_test.inc.am - makefile to be included in tests |
|
|
|
|
* resolve-debbuilddeps.sh - script to install debian package dependencies |
|
|
|
|
* resolve-rpmbuilddeps.sh - script to install RPM package dependencies |
|
|
|
|
* build-in-docker.sh - script to build the project encapsulated in a docker container |
|
|
|
@ -450,7 +449,7 @@ checkdir() { |
|
|
|
|
if ! test -d "$1"; then # create path |
|
|
|
|
run mkdir -p "$1" |
|
|
|
|
if test -n "${VCS}" -a $novcs -eq 0 && ! contains "$1" "${excludevcs[@]}"; then |
|
|
|
|
run ${VCS} add "$1" |
|
|
|
|
run --no-check ${VCS} add "$1" |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
} |
|
|
|
@ -498,7 +497,7 @@ to() { |
|
|
|
|
run chmod $mode $1 |
|
|
|
|
if test $exists -eq 0; then |
|
|
|
|
if test -n "${VCS}" -a $novcs -eq 0 && ! contains "$1" "${excludevcs[@]}"; then |
|
|
|
|
run ${VCS} add "$1" |
|
|
|
|
run --no-check ${VCS} add "$1" |
|
|
|
|
if test "${VCS}" = "svn"; then |
|
|
|
|
run svn propset svn:keywords "Id" "$1" |
|
|
|
|
fi |
|
|
|
@ -530,7 +529,7 @@ copy() { |
|
|
|
|
run cp "${source}" "$1" |
|
|
|
|
if test $exists -eq 0; then |
|
|
|
|
if test -n "${VCS}" -a $novcs -eq 0 && ! contains "$1" "${excludevcs[@]}"; then |
|
|
|
|
run ${VCS} add "$1" |
|
|
|
|
run --no-check ${VCS} add "$1" |
|
|
|
|
if test "${VCS}" = "svn"; then |
|
|
|
|
run svn propset svn:keywords "Id" "$1" |
|
|
|
|
fi |
|
|
|
@ -579,7 +578,7 @@ vcs2cl() { |
|
|
|
|
fi |
|
|
|
|
if test $exists -eq 0; then |
|
|
|
|
if test -n "${VCS}" -a $novcs -eq 0 && ! contains "ChangeLog" "${excludevcs[@]}"; then |
|
|
|
|
run ${VCS} add ChangeLog |
|
|
|
|
run --no-check ${VCS} add ChangeLog |
|
|
|
|
fi |
|
|
|
|
fi |
|
|
|
|
} |
|
|
|
@ -597,7 +596,6 @@ copy ${MY_NAME} |
|
|
|
|
copy ax_init_standard_project.m4 |
|
|
|
|
copy ax_cxx_compile_stdcxx.m4 |
|
|
|
|
copy ax_check_qt.m4 |
|
|
|
|
copy makefile_test.inc.am |
|
|
|
|
copy resolve-debbuilddeps.sh |
|
|
|
|
copy resolve-rpmbuilddeps.sh |
|
|
|
|
copy build-in-docker.sh |
|
|
|
@ -1512,7 +1510,7 @@ if testtag AX_USE_DOXYGEN; then |
|
|
|
|
sed -i ':a;/\\$/{s///;N;s/ *\n */ /g;ba}' doc/doxyfile.in |
|
|
|
|
if test $exists -eq 0; then |
|
|
|
|
if test -n "${VCS}" -a $novcs -eq 0 && ! contains "doc/doxyfile" "${excludevcs[@]}"; then |
|
|
|
|
run ${VCS} add doc/doxyfile.in |
|
|
|
|
run --no-check ${VCS} add doc/doxyfile.in |
|
|
|
|
if test "${VCS}" = "svn"; then |
|
|
|
|
run svn propset svn:keywords "Id" doc/doxyfile.in |
|
|
|
|
fi |
|
|
|
|