configure

changeset 754
4bc7d966c9db
parent 753
24dc84788dee
child 757
49ceea78fce7
     1.1 --- a/configure	Thu Oct 12 00:00:35 2023 +0200
     1.2 +++ b/configure	Wed Oct 18 21:07:02 2023 +0200
     1.3 @@ -369,10 +369,12 @@
     1.4      do
     1.5          cat >> $TEMP_DIR/make.mk << __EOF__
     1.6  # Dependency: file-tools
     1.7 -MKDIR=mkdir -p
     1.8 -RMDIR=rm -f -R
     1.9 -COPYFILE=cp
    1.10 -COPYALL=cp -R
    1.11 +MKDIR=/bin/mkdir -p
    1.12 +RMFILE=/bin/rm -f
    1.13 +RMDIR=/bin/rm -f -R
    1.14 +COPYFILE=/bin/cp -f
    1.15 +COPYALL=/bin/cp -f -R
    1.16 +SYMLINK=/bin/ln -s
    1.17  
    1.18  __EOF__
    1.19          echo yes
    1.20 @@ -438,12 +440,14 @@
    1.21  
    1.22          cat >> "$TEMP_DIR/make.mk" << __EOF__
    1.23  # library version
    1.24 -VERSION="3.0.0"
    1.25 +VERSION=3.0.0
    1.26 +LIBVERSION=4.0.0
    1.27 +LIBVERSION_MAJOR=4
    1.28  
    1.29  # build directory structure !! do not change or override !!
    1.30 -BUILD_DIR=${src_dir}/build
    1.31 -DOCS_DIR=${src_dir}/build/docs
    1.32 -DIST_DIR=${src_dir}/dist
    1.33 +build_dir=${src_dir}/build
    1.34 +docs_dir=${src_dir}/build/docs
    1.35 +dist_dir=${src_dir}/dist
    1.36  
    1.37  __EOF__
    1.38          break

mercurial