Remove the quotes from the origin line. This doesn't matter on Ubuntu Precise with apt 0.8, but for those of us still using Ubuntu Lucid, apt 0.7 silently ignores preferences with the quotes.
(cherry picked from commit 3922a1bdf5
)
This commit is contained in:
parent
450fadb86a
commit
5d43c20d1e
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ if @pin_release.length > 0
|
|||
elsif @version.length > 0
|
||||
@pin = "version #{@version}"
|
||||
elsif @origin.length > 0
|
||||
@pin = "origin \"#{@origin}\""
|
||||
@pin = "origin #{@origin}"
|
||||
end
|
||||
-%>
|
||||
# <%= @name %>
|
||||
|
|
Loading…
Reference in a new issue