projects
/
openwrt
/
staging
/
dangole.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b04b1ca
)
scripts/ipkg-build: fix a build regression introduced in r46360 (fixes #20082)
author
Felix Fietkau
<nbd@openwrt.org>
Wed, 15 Jul 2015 08:17:49 +0000
(08:17 +0000)
committer
Felix 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
patch
|
blob
|
history
diff --git
a/scripts/ipkg-build
b/scripts/ipkg-build
index 2d410767f34c64bab41d3c93683c618618b36679..cd70c1fbbab44320145e594cf181e6c8166c83b6 100755
(executable)
--- a/
scripts/ipkg-build
+++ b/
scripts/ipkg-build
@@
-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