70208ce99f
Fixed the rpmlint warning for the license. Changed from BSD to BSD-3-Clause. OBS-URL: https://build.opensuse.org/request/show/107061 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/hdf5?expand=0&rev=1
11 lines
162 B
Bash
11 lines
162 B
Bash
#!/bin/bash
|
|
|
|
ARCH=$(uname -m)
|
|
|
|
case $ARCH in
|
|
x86_64 | ppc64 | ia64 | s390 ) BITS=64;;
|
|
* ) BITS=32;;
|
|
esac
|
|
|
|
exec $0-${BITS} "$@"
|