From 084d0a37c8d0f1a991ce22ccc6d8c3dd8ca12a33 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 26 Dec 2012 22:14:47 -0500 Subject: (scripted) fix file permission breakage introduced in commit d62bd1 I did this with this command: git diff d62bd1^..d62bd1 | egrep '^old mode ' -C1 \ | tr '\n' ' ' | sed 's/diff --git/\n&/g' \ | sed -r 's|^diff --git a/([^ ]*) b/([^ ]*) old mode 100([0-9]*) new mode 100([0-9]*)|chmod \3 ./\1|' \ | bash The first line finds all of the file-permission changes in the commit. The second line squashes some newlines to get one line per file. This line is in the format: diff --git a/FILE b/FILE old mode OLDMODE new mode NEWMODE The third line extracts the values from those lines and transforms the line into: chmod FILE ./OLDMODE The fourth line (obviously) just executes the output. --- libre/linux-libre/ChangeLog | 0 libre/linux-libre/Kbuild | 0 libre/linux-libre/Kbuild.platforms | 0 libre/linux-libre/PKGBUILD | 0 libre/linux-libre/boot-logo.patch | 0 libre/linux-libre/change-default-console-loglevel.patch | 0 libre/linux-libre/config.i686 | 0 libre/linux-libre/config.x86_64 | 0 libre/linux-libre/linux-libre.install | 0 libre/linux-libre/linux-libre.preset | 0 10 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 libre/linux-libre/ChangeLog mode change 100755 => 100644 libre/linux-libre/Kbuild mode change 100755 => 100644 libre/linux-libre/Kbuild.platforms mode change 100755 => 100644 libre/linux-libre/PKGBUILD mode change 100755 => 100644 libre/linux-libre/boot-logo.patch mode change 100755 => 100644 libre/linux-libre/change-default-console-loglevel.patch mode change 100755 => 100644 libre/linux-libre/config.i686 mode change 100755 => 100644 libre/linux-libre/config.x86_64 mode change 100755 => 100644 libre/linux-libre/linux-libre.install mode change 100755 => 100644 libre/linux-libre/linux-libre.preset (limited to 'libre/linux-libre') diff --git a/libre/linux-libre/ChangeLog b/libre/linux-libre/ChangeLog old mode 100755 new mode 100644 diff --git a/libre/linux-libre/Kbuild b/libre/linux-libre/Kbuild old mode 100755 new mode 100644 diff --git a/libre/linux-libre/Kbuild.platforms b/libre/linux-libre/Kbuild.platforms old mode 100755 new mode 100644 diff --git a/libre/linux-libre/PKGBUILD b/libre/linux-libre/PKGBUILD old mode 100755 new mode 100644 diff --git a/libre/linux-libre/boot-logo.patch b/libre/linux-libre/boot-logo.patch old mode 100755 new mode 100644 diff --git a/libre/linux-libre/change-default-console-loglevel.patch b/libre/linux-libre/change-default-console-loglevel.patch old mode 100755 new mode 100644 diff --git a/libre/linux-libre/config.i686 b/libre/linux-libre/config.i686 old mode 100755 new mode 100644 diff --git a/libre/linux-libre/config.x86_64 b/libre/linux-libre/config.x86_64 old mode 100755 new mode 100644 diff --git a/libre/linux-libre/linux-libre.install b/libre/linux-libre/linux-libre.install old mode 100755 new mode 100644 diff --git a/libre/linux-libre/linux-libre.preset b/libre/linux-libre/linux-libre.preset old mode 100755 new mode 100644 -- cgit v1.2.3-54-g00ecf