diff options
author | Jani Välimaa <wally@mageia.org> | 2023-11-22 22:17:57 +0200 |
---|---|---|
committer | Jani Välimaa <wally@mageia.org> | 2023-11-22 22:17:57 +0200 |
commit | 69d1e430eafbabe3ba148538c28f2bf771370ab2 (patch) | |
tree | aa1df86663da3163a094a549a5993dddb60430ea | |
parent | 9e8070f0c7594da003839d865658b83c200704ff (diff) | |
download | rpm-setup-69d1e430eafbabe3ba148538c28f2bf771370ab2.tar rpm-setup-69d1e430eafbabe3ba148538c28f2bf771370ab2.tar.gz rpm-setup-69d1e430eafbabe3ba148538c28f2bf771370ab2.tar.bz2 rpm-setup-69d1e430eafbabe3ba148538c28f2bf771370ab2.tar.xz rpm-setup-69d1e430eafbabe3ba148538c28f2bf771370ab2.zip |
Mangle script shebangs
-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 |