From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: dhruva Newsgroups: gmane.emacs.devel Subject: themes not getting installed: mingw build Date: Sun, 17 Oct 2010 09:11:55 +0530 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: dough.gmane.org 1287286946 8855 80.91.229.12 (17 Oct 2010 03:42:26 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sun, 17 Oct 2010 03:42:26 +0000 (UTC) To: Emacs Development Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Oct 17 05:42:25 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1P7K8f-0001MP-0G for ged-emacs-devel@m.gmane.org; Sun, 17 Oct 2010 05:42:25 +0200 Original-Received: from localhost ([127.0.0.1]:33433 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P7K8e-0008TS-GP for ged-emacs-devel@m.gmane.org; Sat, 16 Oct 2010 23:42:24 -0400 Original-Received: from [140.186.70.92] (port=35163 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P7K8E-0008K7-2V for emacs-devel@gnu.org; Sat, 16 Oct 2010 23:41:58 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P7K8D-0005ar-2U for emacs-devel@gnu.org; Sat, 16 Oct 2010 23:41:57 -0400 Original-Received: from mail-vw0-f41.google.com ([209.85.212.41]:39928) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P7K8C-0005aS-Vq for emacs-devel@gnu.org; Sat, 16 Oct 2010 23:41:57 -0400 Original-Received: by vws19 with SMTP id 19so1238364vws.0 for ; Sat, 16 Oct 2010 20:41:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=KuAL2rbOWggVXfEncSNYI4HXZ3W4p9GuTCfIA9MymJ4=; b=YfJyh6o2jclWa3iMTg2w7DyUTpAamhTwTZQ1Fph9WxuTB53u3OvgpoFNcB6E5lWlst TGn+NpoB74n3xR72/e6xRZwi599TAbZHzGcNpIYyxNSaZqze1+IcSPcNJXK6a6ppuMdO Hyew9A2ChaH/8yTQofDYxUifqZmBJ1yLH9fcI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=OuABQ39NlSKmHlhwQ5y1x7nooc3P6AxTU38YNmQn8bdRmJRJuZpZUAHfH/DJusmuzf 12ZLmoN9I4AWGy4O82R/n9U9AN5RcBTAhx3rD0BnM56MouTnhz7wil5KGQANLKbTTHZ3 uSSk7XK8L7wV20c7wtC03w1TPuzMjEjiP3iF8= Original-Received: by 10.220.195.194 with SMTP id ed2mr597874vcb.19.1287286915908; Sat, 16 Oct 2010 20:41:55 -0700 (PDT) Original-Received: by 10.220.75.76 with HTTP; Sat, 16 Oct 2010 20:41:55 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:131770 Archived-At: Hello, I am using emacs built using mingw tool chain on windoze XP. The themes are not getting installed when I do a 'make bootstrap; make install' In the source dir, I find the following files (using git repo): emacs\lisp\themes\tango-dark-theme.el emacs\lisp\themes\tango-theme.el emacs\lisp\themes\wheatgrass-theme.el Is this a know problem? The trivial patch below fixes the problem: diff --git a/lisp/makefile.w32-in b/lisp/makefile.w32-in index cd76ffa..28ef222 100644 --- a/lisp/makefile.w32-in +++ b/lisp/makefile.w32-in @@ -117,6 +117,7 @@ WINS_BASIC=\ play \ progmodes \ textmodes \ + themes \ url \ vc -dhruva