Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to stable-1.15 sorcery by Jaka Kranjc (12d444d29db5c194a8979ed44167ecad1beb2b60)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Jaka Kranjc <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to stable-1.15 sorcery by Jaka Kranjc (12d444d29db5c194a8979ed44167ecad1beb2b60)
  • Date: Sat, 9 Jan 2016 09:38:44 +0000

GIT changes to stable-1.15 sorcery by Jaka Kranjc
<lynxlynxlynx AT sourcemage.org>:

ChangeLog | 3 +++
usr/sbin/alter | 4 ++--
var/lib/sorcery/modules/libcodex | 2 +-
3 files changed, 6 insertions(+), 3 deletions(-)

New commits:
commit 12d444d29db5c194a8979ed44167ecad1beb2b60
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

alter, libcodex: fixed find's subtle semantic break as of 4.5.11

diff --git a/ChangeLog b/ChangeLog
index 1d7573c..bf799fa 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2016-01-09 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * alter, libcodex: fixed find's subtle semantic break as of 4.5.11
+
2015-04-22 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
* version: 1.15.4 released!

diff --git a/usr/sbin/alter b/usr/sbin/alter
index 43aec5f..c75bc23 100755
--- a/usr/sbin/alter
+++ b/usr/sbin/alter
@@ -229,7 +229,7 @@ function alter_gather_bins() {

if [ ! -f "/etc/prelink.conf" ]; then
message "${MESSAGE_COLOR}Gathering binary directories for altering (this
could take a long while)...${DEFAULT_COLOR}"
- find / -perm +001 2> /dev/null |
+ find / -perm -001 2> /dev/null |
while read LINE; do
[ ! -h "$LINE" ] && file $LINE 2> /dev/null |
grep -q ELF && echo "$LINE"
@@ -284,7 +284,7 @@ function alter_strip_all_do() {
alter_gather_bins

alter_alter -n smgl-strip '
- find $(cat /etc/prelink.conf) -perm +001 2> /dev/null |
+ find $(cat /etc/prelink.conf) -perm -001 2> /dev/null |
while read LINE; do
[ ! -h "$LINE" ] && file $LINE 2> /dev/null |
grep -q ELF && echo "$LINE"
diff --git a/var/lib/sorcery/modules/libcodex
b/var/lib/sorcery/modules/libcodex
index 176225a..d3d016a 100755
--- a/var/lib/sorcery/modules/libcodex
+++ b/var/lib/sorcery/modules/libcodex
@@ -919,7 +919,7 @@ function codex_create_in_memory_cache_all() {
##
#---------------------------------------------------------------------
function codex_find_in_grimoire () {
- find "$1" -follow -maxdepth 3 -mindepth 3 -perm +700 -name "$2"
+ find "$1" -follow -maxdepth 3 -mindepth 3 -perm /700 -name "$2"
}

#---------------------------------------------------------------------



  • [SM-Commit] GIT changes to stable-1.15 sorcery by Jaka Kranjc (12d444d29db5c194a8979ed44167ecad1beb2b60), Jaka Kranjc, 01/09/2016

Archive powered by MHonArc 2.6.24.

Top of Page