From 5d43c20d1ebfe1ad5a0f1774814264dbb37ceef2 Mon Sep 17 00:00:00 2001 From: Matt Callaway Date: Fri, 31 Jan 2014 15:56:28 -0600 Subject: [PATCH] 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 3922a1bdf505947bd2425378035f0edaffc385e6) --- templates/pin.pref.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/pin.pref.erb b/templates/pin.pref.erb index 62c44c7..eed0c10 100644 --- a/templates/pin.pref.erb +++ b/templates/pin.pref.erb @@ -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 %> -- 2.45.2