commit: b5edd81bc2ac3418070410d1ecfecfe4829c5af8
parent a459016e8e1e69062b2d76da52e288e6e3536be0
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Sun, 9 Jul 2023 17:26:29 +0200
dev-lang/go: Fix touching runtime.a
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-lang/go/go-1.4_p20171003.ebuild b/dev-lang/go/go-1.4_p20171003.ebuild
@@ -77,6 +77,6 @@ pkg_postinst() {
ebegin "fixing timestamps to avoid unnecessary rebuilds"
tref="usr/lib/go/pkg/*/runtime.a"
find "${EROOT}/usr/lib/go" -type f \
- -exec touch -r "${EROOT}/${tref}" {} \;
+ -exec touch -r "${EROOT}/"${tref} {} \;
eend $?
}