Skip to content
Commit 2bbbd3aa authored by Mladen Milinkovic's avatar Mladen Milinkovic Committed by Hannah von Reth
Browse files

libs/icu: fixed hardcoded path in icu-config

Summary:
Current recipe generates bin/icu-config script that contains a hardcoded path inside:
```
default_prefix="/home/appimage/Craft/BinaryCache/linux-64-gcc"
if [ "x${prefix}" = "x" ]; then prefix="$default_prefix"; fi
```

Using icu-config without specifiying prefix fails. This patch solves that by replacing those lines with:
```
default_prefix="$KDEROOT"
if [ "x${prefix}" = "x" ]; then prefix="$default_prefix"; fi
```

Reviewers: #craft, vonreth

Reviewed By: #craft, vonreth

Differential Revision: https://phabricator.kde.org/D25687
parent 3d1b0903
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment