gettext-full: fix to use $STAGING_DIR_HOSTPKG instead of $STAGING_DIR/host

Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
v19.07.3_mercusys_ac12_duma
Matthias Schiffer 7 years ago
parent 40d3401f3b
commit 421a6d314a
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C

@ -5,8 +5,8 @@
# Set variables
# - gettext_datadir directory where the data files are stored.
-prefix="@prefix@"
+if [ -n "$STAGING_DIR" ]; then
+ prefix="$STAGING_DIR/host"
+if [ -n "$STAGING_DIR_HOSTPKG" ]; then
+ prefix="$STAGING_DIR_HOSTPKG"
+else
+ prefix="@prefix@"
+fi
@ -20,8 +20,8 @@
# Set variables
# - gettext_datadir directory where the data files are stored.
-prefix="@prefix@"
+if [ -n "$STAGING_DIR" ]; then
+ prefix="$STAGING_DIR/host"
+if [ -n "$STAGING_DIR_HOSTPKG" ]; then
+ prefix="$STAGING_DIR_HOSTPKG"
+else
+ prefix="@prefix@"
+fi

Loading…
Cancel
Save