6bc5671491
Apply: git diff --full-index --binary anaconda-23.19.10-1..anaconda-25.20.9-1 And resolve conflicts. QubesOS/qubes-issues#2574
10 lines
198 B
Bash
Executable File
10 lines
198 B
Bash
Executable File
#!/bin/bash -e
|
|
[ -d m4 ] || mkdir m4
|
|
libtoolize --copy --force
|
|
aclocal -I m4
|
|
autoconf
|
|
autoheader --force
|
|
automake --foreign --add-missing --copy
|
|
rm -rf autom4te.cache
|
|
( cd widgets && ./autogen.sh )
|