Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
howtos:win32:msys2 [2025/02/01 13:02] – missing mkdir -p in release process giuspenhowtos:win32:msys2 [2025/02/01 17:04] (current) – use git clean -dfx as distclean may fail if there was no configure yet giuspen
Line 144: Line 144:
     VERSION="2.1"     VERSION="2.1"
     cd ~/git/geany     cd ~/git/geany
-    make distclean+    git clean -dfx
     NOCONFIGURE=1 ./autogen.sh     NOCONFIGURE=1 ./autogen.sh
     export lt_cv_deplibs_check_method=${lt_cv_deplibs_check_method='pass_all'}     export lt_cv_deplibs_check_method=${lt_cv_deplibs_check_method='pass_all'}
Line 181: Line 181:
  
     DESTINATON=$HOME/geany_build     DESTINATON=$HOME/geany_build
-    VERSION="1.39+    VERSION="2.1
-    cd ~/geany-plugins-master +    cd ~/git/geany-plugins 
-    make distclean +    git clean -dfx 
-    ./autogen.sh+    NOCONFIGURE=1 ./autogen.sh 
 +    export lt_cv_deplibs_check_method=${lt_cv_deplibs_check_method='pass_all'}
     mkdir _build     mkdir _build
     cd _build     cd _build
     ../configure --prefix=${DESTINATON}/build/geany --with-geany-libdir=${DESTINATON}/build/geany/lib --disable-silent-rules     ../configure --prefix=${DESTINATON}/build/geany --with-geany-libdir=${DESTINATON}/build/geany/lib --disable-silent-rules
-    make -j 2+    make -j
     make DESTDIR=${DESTINATON}/build/geany-plugins install     make DESTDIR=${DESTINATON}/build/geany-plugins install
 +    rm -rf $DESTINATON/release/geany-plugins-orig
 +    mkdir -p $DESTINATON/release/geany-plugins-orig
     rsync -a --delete ${DESTINATON}/build/geany-plugins/${DESTINATON}/build/geany/ $DESTINATON/release/geany-plugins-orig     rsync -a --delete ${DESTINATON}/build/geany-plugins/${DESTINATON}/build/geany/ $DESTINATON/release/geany-plugins-orig
  
Print/export