From 18ba1305d535290ea07adf03a567661dc9043309 Mon Sep 17 00:00:00 2001
From: Felix Fietkau <nbd@openwrt.org>
Date: Mon, 1 Feb 2016 10:33:25 +0000
Subject: [PATCH] scripts/get_source_date_epoch.sh: for SVN use a variant that
 is compatible with older versions

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 48593
---
 scripts/get_source_date_epoch.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/get_source_date_epoch.sh b/scripts/get_source_date_epoch.sh
index b8efb761d0..436df9d064 100755
--- a/scripts/get_source_date_epoch.sh
+++ b/scripts/get_source_date_epoch.sh
@@ -11,7 +11,7 @@ try_version() {
 
 try_svn() {
 	[ -d .svn ] || return 1
-	SOURCE_DATE_EPOCH="$(./scripts/portable_date.sh "$(svn info --show-item last-changed-date)" +%s)"
+	SOURCE_DATE_EPOCH="$(./scripts/portable_date.sh "$(LC_ALL=C svn info | sed -ne 's/^Last Changed Date: //p')" +%s)"
 	[ -n "$SOURCE_DATE_EPOCH" ]
 }
 
-- 
GitLab