ports/math/gh-bc/files/patch-locale__install.sh
Stefan Eßer 59fa5b8f16 Another attempt to fix build breakage that does only affect the package
builder and does not occur on my system.

Approved by:	antoine (implicit)
2019-06-07 08:04:17 +00:00

20 lines
424 B
Bash

--- locale_install.sh.orig 2019-05-29 01:32:06 UTC
+++ locale_install.sh
@@ -114,6 +114,7 @@ for file in $locales_dir/*.msg; do
continue
fi
+ echo gencatfile "$loc" "$file"
gencatfile "$loc" "$file"
done
@@ -143,7 +144,8 @@ for file in $locales_dir/*.msg; do
gencatfile "$destdir/$linksrc" "$linkdir/$link"
fi
- ln -s "$linksrc" "$loc"
+ echo ln "$linksrc" "$loc"
+ ln "$linksrc" "$loc"
fi
done