This is an automated email from the ASF dual-hosted git repository.

desruisseaux pushed a commit to branch geoapi-4.0
in repository https://gitbox.apache.org/repos/asf/sis.git

commit fb3ce3c46e7bbd97d5682b972d7337b672ae0f23
Author: Martin Desruisseaux <[email protected]>
AuthorDate: Thu Jan 8 16:54:35 2026 +0100

    Replace the `-e` option by the more portable `-f` option in `readlink`.
---
 optional/src/org.apache.sis.gui/bundle/bin/sis          | 2 +-
 optional/src/org.apache.sis.gui/bundle/bin/sis_shell    | 2 +-
 optional/src/org.apache.sis.gui/bundle/bin/sisfx        | 2 +-
 optional/src/org.apache.sis.gui/bundle/conf/imports.jsh | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/optional/src/org.apache.sis.gui/bundle/bin/sis 
b/optional/src/org.apache.sis.gui/bundle/bin/sis
index bd0f4b6f7c..7ebd141e66 100755
--- a/optional/src/org.apache.sis.gui/bundle/bin/sis
+++ b/optional/src/org.apache.sis.gui/bundle/bin/sis
@@ -18,7 +18,7 @@
 
 set -o errexit
 
-BASE_DIR="`dirname "$( readlink -e "$0"; )";`/.."
+BASE_DIR="`dirname "$( readlink -f "$0"; )";`/.."
 SIS_DATA="${SIS_DATA:-$BASE_DIR/data}"
 export SIS_DATA
 unset  SIS_HOME
diff --git a/optional/src/org.apache.sis.gui/bundle/bin/sis_shell 
b/optional/src/org.apache.sis.gui/bundle/bin/sis_shell
index 85f086e5ec..9a642933f2 100755
--- a/optional/src/org.apache.sis.gui/bundle/bin/sis_shell
+++ b/optional/src/org.apache.sis.gui/bundle/bin/sis_shell
@@ -18,7 +18,7 @@
 
 set -o errexit
 
-SIS_HOME="`dirname "$( readlink -e "$0"; )";`/.."
+SIS_HOME="`dirname "$( readlink -f "$0"; )";`/.."
 SIS_DATA="${SIS_DATA:-$SIS_HOME/data}"
 export SIS_DATA
 export SIS_HOME
diff --git a/optional/src/org.apache.sis.gui/bundle/bin/sisfx 
b/optional/src/org.apache.sis.gui/bundle/bin/sisfx
index 4c3054a447..c33c5a27c2 100755
--- a/optional/src/org.apache.sis.gui/bundle/bin/sisfx
+++ b/optional/src/org.apache.sis.gui/bundle/bin/sisfx
@@ -22,7 +22,7 @@ set -o errexit
 #
 # Initialization.
 #
-BASE_DIR="`dirname "$( readlink -e "$0"; )";`/.."
+BASE_DIR="`dirname "$( readlink -f "$0"; )";`/.."
 . "$BASE_DIR/conf/setenv.sh"
 
 SIS_DATA="${SIS_DATA:-$BASE_DIR/data}"
diff --git a/optional/src/org.apache.sis.gui/bundle/conf/imports.jsh 
b/optional/src/org.apache.sis.gui/bundle/conf/imports.jsh
index fd9764ff96..5e4c642501 100644
--- a/optional/src/org.apache.sis.gui/bundle/conf/imports.jsh
+++ b/optional/src/org.apache.sis.gui/bundle/conf/imports.jsh
@@ -215,7 +215,7 @@ import org.opengis.referencing.cs.RangeMeaning;
 import org.opengis.referencing.datum.Datum;
 import org.opengis.referencing.datum.Ellipsoid;
 import org.opengis.referencing.datum.GeodeticDatum;
-import org.opengis.referencing.datum.PixelInCell;
+import org.apache.sis.coverage.grid.PixelInCell;
 import org.opengis.referencing.datum.PrimeMeridian;
 import org.opengis.referencing.operation.ConcatenatedOperation;
 import org.opengis.referencing.operation.CoordinateOperation;

Reply via email to