forked from pool/xemacs
294bf6d3b0
- rebuild for ppc64 and ia64 (bnc#726769) OBS-URL: https://build.opensuse.org/request/show/98787 OBS-URL: https://build.opensuse.org/package/show/M17N/xemacs?expand=0&rev=34
21 lines
373 B
Bash
21 lines
373 B
Bash
#!/bin/bash
|
|
case $BUILD_BASENAME in
|
|
*ppc*)
|
|
if test $(getconf PAGESIZE) -ne 65536; then
|
|
echo "Error: wrong build host, PAGESIZE must be 65536"
|
|
exit 1
|
|
fi
|
|
;;
|
|
*ia64*)
|
|
if test $(getconf PAGESIZE) -ne 65536; then
|
|
echo "Error: wrong build host, PAGESIZE must be 65536"
|
|
exit 1
|
|
fi
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
|
|
exit 0
|
|
|