diff options
author | John Rigby <john.rigby@linaro.org> | 2011-09-27 13:20:53 -0600 |
---|---|---|
committer | Philippe Langlais <philippe.langlais@stericsson.com> | 2012-06-04 19:50:30 +0800 |
commit | a42c95e4d9fb755735dbc0af893426a08565abc0 (patch) | |
tree | 7f86def447c0e063d7f4c2507bd66d6a1c359868 | |
parent | 2b1aa1fd8ec5ea594368db13691981f6fa210d50 (diff) |
LINARO: PACKAGING: Never rename dbgsym deb to ddeb
Must not upload this to primary archive as is.
This is a hack until we find conditional way to do this.
Signed-off-by: John Rigby <john.rigby@linaro.org>
-rw-r--r-- | debian/rules.d/2-binary-arch.mk | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/debian/rules.d/2-binary-arch.mk b/debian/rules.d/2-binary-arch.mk index a403bea9c84..dde7aef28fd 100644 --- a/debian/rules.d/2-binary-arch.mk +++ b/debian/rules.d/2-binary-arch.mk @@ -319,6 +319,11 @@ ifneq ($(skipdbg),true) dh_md5sums -p$(dbgpkg) dh_builddeb -p$(dbgpkg) + # Hack Alert! Commenting the section out for linaro ppa build only + # Must not upload this to primary archive as is. + # Turns out that Purpose: PRIMARY is in /CurrentlyBuilding + # and not PPA as was expected + # Hokay...here's where we do a little twiddling... # Renaming the debug package prevents it from getting into # the primary archive, and therefore prevents this very large @@ -327,17 +332,17 @@ ifneq ($(skipdbg),true) # # Only do this for PRIMARY archive for now # - set -e; \ - if grep -qs '^Purpose: PRIMARY$$' /CurrentlyBuilding; then \ - mv ../$(dbgpkg)_$(release)-$(revision)_$(arch).deb \ - ../$(dbgpkg)_$(release)-$(revision)_$(arch).ddeb; \ - if grep -qs '^Build-Debug-Symbols: yes$$' /CurrentlyBuilding; then \ - sed -i '/^$(dbgpkg)_/s/\.deb /.ddeb /' debian/files; \ - else \ - grep -v '^$(dbgpkg)_.*$$' debian/files > debian/files.new; \ - mv debian/files.new debian/files; \ - fi; \ - fi + #set -e; \ + #if grep -qs '^Purpose: PRIMARY$$' /CurrentlyBuilding; then \ + # mv ../$(dbgpkg)_$(release)-$(revision)_$(arch).deb \ + # ../$(dbgpkg)_$(release)-$(revision)_$(arch).ddeb; \ + # if grep -qs '^Build-Debug-Symbols: yes$$' /CurrentlyBuilding; then \ + # sed -i '/^$(dbgpkg)_/s/\.deb /.ddeb /' debian/files; \ + # else \ + # grep -v '^$(dbgpkg)_.*$$' debian/files > debian/files.new; \ + # mv debian/files.new debian/files; \ + # fi; \ + #fi # Now, the package wont get into the archive, but it will get put # into the debug system. endif |