scripts/ipkg-build: fix a build regression introduced in r46360 (fixes #20082)
authorFelix Fietkau <nbd@openwrt.org>
Wed, 15 Jul 2015 08:17:49 +0000 (08:17 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Wed, 15 Jul 2015 08:17:49 +0000 (08:17 +0000)
go to the $TOPDIR directory before trying to extract a git/svn timestamp

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

scripts/ipkg-build

index 2d410767f34c64bab41d3c93683c618618b36679..cd70c1fbbab44320145e594cf181e6c8166c83b6 100755 (executable)
@@ -19,7 +19,7 @@ export GZIP="-n"
 
 # look up date of last commit
 if [ -d "$TOPDIR/.git" ]; then
-       TIMESTAMP=$($GIT log -1 -s --format=%ci)
+       TIMESTAMP=$(cd $TOPDIR; $GIT log -1 -s --format=%ci)
 elif [ -d "$TOPDIR/.svn" ]; then
        TIMESTAMP=$($SVN info "$TOPDIR" | sed -n "s/^Last Changed Date: \(.*\)/\1/p")
 else