From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jude DaShiell Subject: patch org-mode Makefile - solve a couple debian build problems and a slackware build problem Date: Tue, 5 Jul 2011 21:11:02 -0400 (EDT) Message-ID: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([140.186.70.92]:46487) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QeGdu-0002l1-97 for emacs-orgmode@gnu.org; Tue, 05 Jul 2011 21:11:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QeGds-0002Dw-Qf for emacs-orgmode@gnu.org; Tue, 05 Jul 2011 21:11:05 -0400 Received: from shellworld.net ([69.60.117.94]:64752 helo=server1.shellworld.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QeGds-0002Do-FZ for emacs-orgmode@gnu.org; Tue, 05 Jul 2011 21:11:04 -0400 Received: from localhost (localhost [127.0.0.1]) by server1.shellworld.net (Postfix) with ESMTP id 01A1122A16 for ; Tue, 5 Jul 2011 21:11:02 -0400 (EDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org diff -c a//Makefile b//Makefile *** a//Makefile 2011-07-05 21:05:08.000000000 -0400 --- b//Makefile 2011-07-05 21:05:21.000000000 -0400 *************** *** 14,20 **** EMACS=emacs # Where local software is found ! prefix=/usr/local # Where local lisp files go. lispdir = $(prefix)/share/emacs/site-lisp --- 14,23 ---- EMACS=emacs # Where local software is found ! #prefix=/usr/local ! # solve debian and slackware prefix problem. ! # if using slackware or debian uncomment next line and comment line above this line. ! prefix=/usr # Where local lisp files go. lispdir = $(prefix)/share/emacs/site-lisp *************** *** 51,57 **** CP = cp -p # Name of the program to install info files ! INSTALL_INFO=install-info ##---------------------------------------------------------------------- ## BELOW THIS LINE ON YOUR OWN RISK! --- 54,63 ---- CP = cp -p # Name of the program to install info files ! #INSTALL_INFO=install-info ! # solve debian install-info program name problem. ! # if using debian uncomment next line and comment line above this line. ! INSTALL_INFO=ginstall-info ##---------------------------------------------------------------------- ## BELOW THIS LINE ON YOUR OWN RISK!