blob: 22dc037e888f5558b1aac25e87000b1982ce5979 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
From 18fb416b0b1ed8e4d6652958acd786ea4bfa813f Mon Sep 17 00:00:00 2001
From: Felipe Eduardo Sanchez Diaz Duran <izto@asic-linux.com.mx>
Date: Mon, 24 Nov 2014 18:56:11 -0600
Subject: [PATCH 08/20] Fixed glibc minor version handling
---
installwatch/create-localdecls | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/installwatch/create-localdecls b/installwatch/create-localdecls
index 0cb3e27..407e755 100755
--- a/installwatch/create-localdecls
+++ b/installwatch/create-localdecls
@@ -109,9 +109,9 @@ if test "$VERSION" = 'libc.so.6' ; then
echo '#define GLIBC_MINOR 13' >> $OUTFILE
SUBVERSION='glibc-2.13' ;;
*)
- echo 'Treated as glibc >= 2.1 (finger crossed)'
- echo '#define GLIBC_MINOR 1' >> $OUTFILE
- SUBVERSION='glibc-2.1' ;;
+ echo 'Treated as glibc >= 2.13 (finger crossed)'
+ echo '#define GLIBC_MINOR 13' >> $OUTFILE
+ SUBVERSION='glibc-2.13' ;;
esac
;;
esac
--
2.30.0
|