tbuild: when building libsecp256k1, patch Makefile.am before autogen.sh - electrum - Electrum Bitcoin wallet
 (HTM) git clone https://git.parazyd.org/electrum
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
       ---
 (DIR) commit b381fd84fbf0fc4af4d3f294f81bea349b85e421
 (DIR) parent abde8ff1692c50ca5c5fa12c71f9edb2cf6d0f72
 (HTM) Author: SomberNight <somber.night@protonmail.com>
       Date:   Sun,  8 Sep 2019 18:47:30 +0200
       
       build: when building libsecp256k1, patch Makefile.am before autogen.sh
       
       apparently this could have caused issues on MacOS
       
       based on Electron-Cash/Electron-Cash@69f6cd0aa0552cb12bb2948da8f0d3f7ae32ffc8
       
       Diffstat:
         M contrib/build-linux/appimage/build… |       2 +-
         M contrib/build-wine/build-secp256k1… |       2 +-
       
       2 files changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/contrib/build-linux/appimage/build.sh b/contrib/build-linux/appimage/build.sh
       t@@ -86,8 +86,8 @@ info "building libsecp256k1."
            git reset --hard "$LIBSECP_VERSION"
            git clean -f -x -q
            export SOURCE_DATE_EPOCH=1530212462
       -    ./autogen.sh
            echo "LDFLAGS = -no-undefined" >> Makefile.am
       +    ./autogen.sh
            ./configure \
              --prefix="$APPDIR/usr" \
              --enable-module-recovery \
 (DIR) diff --git a/contrib/build-wine/build-secp256k1.sh b/contrib/build-wine/build-secp256k1.sh
       t@@ -14,8 +14,8 @@ info "building libsecp256k1..."
        build_dll() {
            #sudo apt-get install -y mingw-w64
            export SOURCE_DATE_EPOCH=1530212462
       -    ./autogen.sh
            echo "LDFLAGS = -no-undefined" >> Makefile.am
       +    ./autogen.sh
            LDFLAGS="-Wl,--no-insert-timestamp" ./configure \
                --host=$1 \
                --enable-module-recovery \