hdf5/h5comp
Orion Poplawski 5690b849c9 - Update to 1.8.2
- Add patch to compile H5detect without optimization - make detection of
    datatype characteristics more robust - esp. long double
- Update signal patch
- Drop destdir patch fixed upstream
- Drop scaleoffset patch
- Re-add -fno-strict-aliasing
- Keep settings file needed for -showconfig (bug #481032)
- Wrapper script needs to pass arguments (bug #481032)
2009-02-23 23:08:49 +00:00

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} "$@"