diff options
| author | CoprDistGit <infra@openeuler.org> | 2025-12-19 08:24:01 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2025-12-19 08:24:01 +0000 |
| commit | 798e274c8bba06599dd672737ec1d27729537775 (patch) | |
| tree | 24fd51d5a2e8d6c2b3bd8d0ed4e74620ef509dbb /gdal-config | |
| parent | 4e48927fd1a13f113db27b7a309adedbede30f6e (diff) | |
automatic import of gdalopeneuler24.03_LTS
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..0a258a7 --- /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 | riscv64 ) +gdal-config-64 ${*} +;; +*) +gdal-config-32 ${*} +;; +esac |
