diff options
author | CoprDistGit <infra@openeuler.org> | 2023-06-21 06:26:59 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-06-21 06:26:59 +0000 |
commit | 77be0943c61fcd5768043e33bba2935110f83841 (patch) | |
tree | 08f5aee2df0329f1c824e0ea73332e182a763380 /gdal-config | |
parent | df6b54cdda36074d19e25f0d82e64ef866e3ffe3 (diff) |
automatic import of gdalopeneuler20.03
Diffstat (limited to 'gdal-config')
-rwxr-xr-x | gdal-config | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gdal-config b/gdal-config new file mode 100755 index 0000000..37a3f66 --- /dev/null +++ b/gdal-config @@ -0,0 +1,11 @@ +#!/bin/bash + +ARCH=$(uname -m) +case $ARCH in +x86_64 | ppc64 | ppc64le | ia64 | s390x | sparc64 | alpha | alphaev6 | aarch64 ) +gdal-config-64 ${*} +;; +*) +gdal-config-32 ${*} +;; +esac |