scripts/get_source_date_epoch.sh: for SVN use a variant that is compatible with older...
authorFelix Fietkau <nbd@openwrt.org>
Mon, 1 Feb 2016 10:33:25 +0000 (10:33 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Mon, 1 Feb 2016 10:33:25 +0000 (10:33 +0000)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 48593

scripts/get_source_date_epoch.sh

index b8efb761d03e03139a2e5675fa0521d5ca2c5f31..436df9d064a7e28b82b6065f1f2670394b4c5a89 100755 (executable)
@@ -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" ]
 }