-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
In Ubuntu, we applied the attached patch to fix this FTBFS.
Thank you.
- --
Luca Falavigna
Ubuntu MOTU Developer
GPG Key: 0x86BC2A50
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFHgV4wnXjXEYa8KlARAhdnAJ0asnnMnTxlZmaIVT9ov69Py3a3CQCgpGXN
hvvQYLZISavMsdf+HiKeXw0=
=ai1y
-----END PGP SIGNATURE-----
diff -u gsfonts-wadalab-0.20010409/debian/rules
gsfonts-wadalab-0.20010409/debian/rules
--- gsfonts-wadalab-0.20010409/debian/rules
+++ gsfonts-wadalab-0.20010409/debian/rules
@@ -23,7 +23,7 @@
clean:
if [ ! -d ./debian ]; then echo "Wrong place!"; exit 1; fi
- if [ "$$UID" != "0" ]; then echo "Must be root!"; exit 1; fi
+ if [ `id -ur` != "0" ]; then echo "Must be root!"; exit 1; fi
rm -rf build
for i in $(FNTCMN) $(FNTMIN) $(FNTGOT); do \
rm -rf ./debian/$$i ; done
@@ -32,7 +32,7 @@
install: build
if [ ! -d ./debian ]; then echo "Wrong place!"; exit 1; fi
- if [ "$$UID" != "0" ]; then echo "Must be root!"; exit 1; fi
+ if [ `id -ur` != "0" ]; then echo "Must be root!"; exit 1; fi
rm -rf ./debian/files
for i in $(FNTCMN) $(FNTMIN) $(FNTGOT) ; \
do \
diff -u
gsfonts-wadalab-0.20010409/debian/patch/gs-setup-wadalab/make-gsfonts-wadalab-hintfiles.sh
gsfonts-wadalab-0.20010409/debian/patch/gs-setup-wadalab/make-gsfonts-wadalab-hintfiles.sh
---
gsfonts-wadalab-0.20010409/debian/patch/gs-setup-wadalab/make-gsfonts-wadalab-hintfiles.sh
+++
gsfonts-wadalab-0.20010409/debian/patch/gs-setup-wadalab/make-gsfonts-wadalab-hintfiles.sh
@@ -49,17 +49,17 @@
done
-function count_all()
+count_all()
{
echo "24 25";
seq 30 39;
- echo 3{a,b,c,d,e,f}
+ echo 3a 3b 3c 3d 3e 3f
seq 40 49;
- echo 4{a,b,c,d,e,f}
+ echo 4a 4b 4c 4d 4e 4f
seq 50 59;
- echo 5{a,b,c,d,e,f}
+ echo 5a 5b 5c 5d 5e 5f
seq 60 69;
- echo 6{a,b,c,d,e,f}
+ echo 6a 6b 6c 6d 6e 6f
seq 70 74;
}