From 398345a4b97e96d7dd0757cbf1cc6c2e1f8713ed Mon Sep 17 00:00:00 2001
From: Legimet <legimet.calc@gmail.com>
Date: Thu, 18 Feb 2016 17:26:50 -0500
Subject: [PATCH] Use /bin/sed instead of sed

---
 helpers/make-firefox | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helpers/make-firefox b/helpers/make-firefox
index a7145bd8..d2d3ef92 100644
--- a/helpers/make-firefox
+++ b/helpers/make-firefox
@@ -30,7 +30,7 @@ cp ./browser/components/preferences/advanced-scripts.xul ./browser/components/pr
 
 # KDE integration patches from https://www.rosenauer.org/hg/mozilla
 # Use firefox$MAJORVERSION branch if available, otherwise use default
-MAJORVERSION=$(echo `pkgversion` | sed 's/\([0-9]\+\).*/\1/')
+MAJORVERSION=$(echo `pkgversion` | /bin/sed 's/\([0-9]\+\).*/\1/')
 BRANCH=firefox$MAJORVERSION
 if ! wget --spider https://rosenauer.org/hg/mozilla/log/$BRANCH; then
 	BRANCH=default
-- 
GitLab