diff options
Diffstat (limited to 'pkg/module.rules')
-rw-r--r-- | pkg/module.rules | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pkg/module.rules b/pkg/module.rules index 9c0457e3b..5ec109fd3 100644 --- a/pkg/module.rules +++ b/pkg/module.rules @@ -17,8 +17,9 @@ $(PKG.src.tar.bz2): | $(STAGE.out.src/) $(TAR.exe) cjf $@ -C $(STAGE.out.src/) $(PKG.basename) $(STAGE.out.src/): - svn export -r$(HB.repo.rev) $(HB.repo.url) $@/$(PKG.basename) - svn info $(HB.repo.url)@$(HB.repo.rev) > $@/$(PKG.basename)/version.txt + $(MKDIR.exe) -p $@ + $(GIT.exe) -C $(SRC/) archive --format=tar --prefix=$(PKG.basename)/ $(HB.repo.shorthash) | $(TAR.exe) -xC $@ + $(SRC/)scripts/repo-info.sh $(SRC/) $(GIT.exe) > $@/$(PKG.basename)/version.txt $(PKG.src-contrib.tar.bz2): $(TAR.exe) cjf $@ -C $(CONTRIB.download/) \ |