diff options
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | autogen.sh | 2 | ||||
-rwxr-xr-x | brp-mangle-shebangs | 2 | ||||
-rwxr-xr-x | find-provides.in | 2 | ||||
-rwxr-xr-x | find-requires.in | 2 | ||||
-rwxr-xr-x | fix-libtool-from-moving-options-after-libs | 2 | ||||
-rwxr-xr-x | force-as-needed-for-shared-lib-in-libtool | 2 | ||||
-rwxr-xr-x | tests.sh | 2 | ||||
-rwxr-xr-x | tests/macros.sh | 2 |
9 files changed, 10 insertions, 8 deletions
@@ -1,3 +1,5 @@ +- mangle script shebangs + Version 2.73 - 22 November 2023, by Jani Välimaa - macros: include RUSTFLAGS in %set_build_flags - macros: set -g when building Vala applications @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/sh aclocal libtoolize --force --copy automake -a -c diff --git a/brp-mangle-shebangs b/brp-mangle-shebangs index ab7af60..5343519 100755 --- a/brp-mangle-shebangs +++ b/brp-mangle-shebangs @@ -1,4 +1,4 @@ -#!/bin/bash -eu +#!/usr/bin/bash -eu # If using normal root, avoid changing anything. if [ -z "$RPM_BUILD_ROOT" -o "$RPM_BUILD_ROOT" = "/" ]; then diff --git a/find-provides.in b/find-provides.in index 598e099..4feab0a 100755 --- a/find-provides.in +++ b/find-provides.in @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/bash # This script reads filenames from STDIN and outputs any relevant provides # information that needs to be included in the package. diff --git a/find-requires.in b/find-requires.in index b15c42c..2cdbe13 100755 --- a/find-requires.in +++ b/find-requires.in @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/bash # # Auto-generate requirements for ELF executables and library diff --git a/fix-libtool-from-moving-options-after-libs b/fix-libtool-from-moving-options-after-libs index e8db899..134a2e3 100755 --- a/fix-libtool-from-moving-options-after-libs +++ b/fix-libtool-from-moving-options-after-libs @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/sh CONFIGURE_TOP="${1:-.}" if [ -e $CONFIGURE_TOP/configure ] && grep -q -F '$deplibs $compiler_flags' $CONFIGURE_TOP/configure; then diff --git a/force-as-needed-for-shared-lib-in-libtool b/force-as-needed-for-shared-lib-in-libtool index 2694273..27b691c 100755 --- a/force-as-needed-for-shared-lib-in-libtool +++ b/force-as-needed-for-shared-lib-in-libtool @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/sh # replaces # tmp_sharedflag='-shared' ;; @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/sh allerrs=0 diff --git a/tests/macros.sh b/tests/macros.sh index 972ceca..44f0df9 100755 --- a/tests/macros.sh +++ b/tests/macros.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/sh RPMEVAL=./rpmeval |