2013-01-15 22:56:52 +01:00
|
|
|
Patch shebangs in source that gets unpacked by `configure'.
|
|
|
|
|
2014-02-19 16:43:25 +01:00
|
|
|
--- bigloo4.1a/gc/install-gc-7.4.0 2014-02-04 14:55:03.000000000 +0100
|
|
|
|
+++ bigloo4.1a/gc/install-gc-7.4.0 2014-02-04 14:55:36.000000000 +0100
|
2013-08-19 19:02:05 +02:00
|
|
|
@@ -29,10 +29,12 @@ fi
|
|
|
|
|
2013-01-15 22:56:52 +01:00
|
|
|
# untar the two versions of the GC
|
|
|
|
$tar xfz $src -C ../gc || (echo "$tar xfz $src failed"; exit 1)
|
2013-08-19 19:02:05 +02:00
|
|
|
-/bin/rm -rf "../gc/$gc"_fth
|
|
|
|
+rm -rf "../gc/$gc"_fth
|
|
|
|
+find ../gc/$gc -perm /111 -type f | xargs sed -i -e"s|/bin/sh|`type -P sh`|g"
|
|
|
|
mv ../gc/$gc "../gc/$gc"_fth || (echo "mv $gc failed"; exit 1)
|
2013-01-15 22:56:52 +01:00
|
|
|
|
|
|
|
$tar xfz $src -C ../gc || (echo "$tar xfz $src failed"; exit 1)
|
2013-08-19 19:02:05 +02:00
|
|
|
+find ../gc/$gc -perm /111 -type f | xargs sed -i -e"s|/bin/sh|`type -P sh`|g"
|
2013-01-15 22:56:52 +01:00
|
|
|
|
|
|
|
# general Bigloo patch
|
2013-08-19 19:02:05 +02:00
|
|
|
(cd "../gc/$gc"_fth && $patch -p1 < ../$gc.patch > /dev/null)
|