Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (d173cdc8307c52d48e273a733edc70604aad51e1)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (d173cdc8307c52d48e273a733edc70604aad51e1)
  • Date: Mon, 30 May 2022 23:09:17 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemaage.org>:

audio-drivers/alsa-utils/HISTORY | 3 +++
audio-drivers/alsa-utils/PRE_BUILD | 12 ++++++++++--
2 files changed, 13 insertions(+), 2 deletions(-)

New commits:
commit d173cdc8307c52d48e273a733edc70604aad51e1
Author: Pavel Vinogradov <public AT sourcemaage.org>
Commit: Pavel Vinogradov <public AT sourcemaage.org>

audio-drivers/alsa-utils: fixed scm bootstrapping

diff --git a/audio-drivers/alsa-utils/HISTORY
b/audio-drivers/alsa-utils/HISTORY
index 0d83e3a..ca0430a 100644
--- a/audio-drivers/alsa-utils/HISTORY
+++ b/audio-drivers/alsa-utils/HISTORY
@@ -1,3 +1,6 @@
+2022-05-30 Pavel Vinogradov <public AT sourcemage.org>
+ * PRE_BUILD: fixed scm bootstrapping
+
2021-12-26 Florian Franzmann <bwlf AT bandrate.org>
* DETAILS: version 1.2.6

diff --git a/audio-drivers/alsa-utils/PRE_BUILD
b/audio-drivers/alsa-utils/PRE_BUILD
index 13b65ae..5162c16 100755
--- a/audio-drivers/alsa-utils/PRE_BUILD
+++ b/audio-drivers/alsa-utils/PRE_BUILD
@@ -1,14 +1,22 @@
default_pre_build &&
cd $SOURCE_DIRECTORY &&
if [[ $ALSA_UTILS_BRANCH == scm ]]; then
- aclocal -I m4 &&
+ if test -d ../alsa-lib/utils && ! test -r `aclocal
--print-ac-dir`/alsa.m4; then
+ alsa_m4_flags="-I ../alsa-lib/utils"
+ fi &&
+ aclocal $alsa_m4_flags $ACLOCAL_FLAGS &&
+ # save original files to avoid stupid modifications by gettextize
cp Makefile.am Makefile.am.ok &&
cp configure.ac configure.ac.ok &&
- gettextize -f --no-changelog &&
+ gettextize -c -f --no-changelog &&
echo "EXTRA_DIST = gettext.m4" > m4/Makefile.am &&
cp Makefile.am.ok Makefile.am &&
cp configure.ac.ok configure.ac &&
+ touch ltconfig &&
+ libtoolize --force --copy --automake &&
+ aclocal $ACLOCAL_FLAGS &&
autoheader &&
automake --foreign --copy --add-missing &&
+ touch depcomp &&
autoconf
fi



  • [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (d173cdc8307c52d48e273a733edc70604aad51e1), Pavel Vinogradov, 05/30/2022

Archive powered by MHonArc 2.6.24.

Top of Page