summaryrefslogtreecommitdiff
path: root/packages/ltrace/0.5.3/0011-configure-hostos.patch
diff options
context:
space:
mode:
authorChris Packham <judge.packham@gmail.com>2021-09-21 07:56:07 (GMT)
committerChris Packham <judge.packham@gmail.com>2021-09-21 09:24:31 (GMT)
commit03ecafa189a12de3e6703e19149f8065ed8c3405 (patch)
tree24a6ce79f53b5afd7b324c83f2323483398b3e3d /packages/ltrace/0.5.3/0011-configure-hostos.patch
parent33bd6d94e864af7e3eaa65abf01b4bc836eb18c6 (diff)
ltrace: Remove obsolete versions
The following versions were marked obsolete in crosstool-ng-1.24.0, remove them. - ltrace-0.5.3 Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'packages/ltrace/0.5.3/0011-configure-hostos.patch')
-rw-r--r--packages/ltrace/0.5.3/0011-configure-hostos.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/packages/ltrace/0.5.3/0011-configure-hostos.patch b/packages/ltrace/0.5.3/0011-configure-hostos.patch
deleted file mode 100644
index 9637212..0000000
--- a/packages/ltrace/0.5.3/0011-configure-hostos.patch
+++ /dev/null
@@ -1,21 +0,0 @@
----
- configure | 8 ++++++--
- 1 file changed, 6 insertions(+), 2 deletions(-)
-
---- a/configure
-+++ b/configure
-@@ -15,8 +15,12 @@
- echo $PACKAGE_VERSION
-
- echo -n "checking HOST_OS... "
--HOST_OS=$( uname -s )
--if [ "$HOST_OS" = "Linux" ]
-+if [ -z "$HOST_OS" ] ; then
-+ HOST_OS=$( uname -s )
-+else
-+ echo -n "using preset: "
-+fi
-+if [ "$HOST_OS" = "Linux" -o "$HOST_OS" = "linux" ]
- then
- HOST_OS="linux-gnu"
- fi