[tor-commits] [arm/packaging] fix: rpm generator script missed dependencies
atagar at torproject.org
atagar at torproject.org
Mon Sep 26 14:46:17 UTC 2011
commit c24113db59ac47356ca724e5cb20942a33a2c8b0
Author: Damian Johnson <atagar at torproject.org>
Date: Mon Sep 26 07:44:26 2011 -0700
fix: rpm generator script missed dependencies
The script for making rpms simply cloned the release branch without fetching
the dependencies. This is the purpose of export.sh so using that instead.
Caught by Juan Alcaine
---
rpm-prep.sh | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/rpm-prep.sh b/rpm-prep.sh
index 09c422b..242e8cf 100755
--- a/rpm-prep.sh
+++ b/rpm-prep.sh
@@ -4,7 +4,6 @@
# cd release_rpm
# ./redhat/make-rpm
-mkdir release_rpm
-git archive --format=tar release | (cd ./release_rpm && tar xf -)
+./export.sh release_rpm
(cd build && git archive --format=tar packaging redhat) | (cd ./release_rpm && tar xf -)
More information about the tor-commits
mailing list