From 13cfdbc1648f73427204026bd135a60f4e2d8c95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20T=C3=A1vora?= Date: Thu, 10 Oct 2013 00:00:08 +0100 Subject: [PATCH] fix: remove references to dropdown-list.el in Rakefile --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 0d1c43e..fe25bcc 100644 --- a/Rakefile +++ b/Rakefile @@ -32,7 +32,7 @@ desc "create a release package" task :package do release_dir = "pkg/yasnippet-#{$version}" FileUtils.mkdir_p(release_dir) - files = ['snippets', 'yasnippet.el', 'dropdown-list.el'] + files = ['snippets', 'yasnippet.el'] FileUtils.cp_r files, release_dir File.open(File.join(release_dir,'yasnippet-pkg.el'), 'w') do |file| file.puts < '.el' do |t| sh "#{$EMACS} --batch -L . --eval \"(byte-compile-file \\\"#{t.source}\\\")\"" end -task :compile => FileList["yasnippet.el", "dropdown-list.el"].ext('elc') +task :compile => FileList["yasnippet.el"].ext('elc') task :default => :doc