[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
gnustandards ChangeLog make-stds.texi
From: |
karl |
Subject: |
gnustandards ChangeLog make-stds.texi |
Date: |
Tue, 30 Dec 2014 23:01:38 +0000 |
CVSROOT: /sources/gnustandards
Module name: gnustandards
Changes by: karl <karl> 14/12/30 23:01:37
Modified files:
. : ChangeLog make-stds.texi
Log message:
single quotes instead of backtickets
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnustandards/ChangeLog?cvsroot=gnustandards&r1=1.195&r2=1.196
http://cvs.savannah.gnu.org/viewcvs/gnustandards/make-stds.texi?cvsroot=gnustandards&r1=1.65&r2=1.66
Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnustandards/gnustandards/ChangeLog,v
retrieving revision 1.195
retrieving revision 1.196
diff -u -b -r1.195 -r1.196
--- ChangeLog 24 Dec 2014 20:31:53 -0000 1.195
+++ ChangeLog 30 Dec 2014 23:01:37 -0000 1.196
@@ -1,3 +1,7 @@
+2014-12-30 Karl Berry <address@hidden>
+
+ * make-stds.texi:
+
2014-12-24 Karl Berry <address@hidden>
* standards.texi: fix broken url to Python manual.
Index: make-stds.texi
===================================================================
RCS file: /sources/gnustandards/gnustandards/make-stds.texi,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -b -r1.65 -r1.66
--- make-stds.texi 13 Sep 2013 22:24:23 -0000 1.65
+++ make-stds.texi 30 Dec 2014 23:01:37 -0000 1.66
@@ -8,7 +8,8 @@
@cindex standards for makefiles
@c Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2000, 2001,
address@hidden 2004, 2005, 2006, 2007, 2008, 2010, 2013 Free Software
Foundation, Inc.
address@hidden 2004, 2005, 2006, 2007, 2008, 2010, 2013, 2014
address@hidden Free Software Foundation, Inc.
@c
@c Permission is granted to copy, distribute and/or modify this document
@c under the terms of the GNU Free Documentation License, Version 1.3
@@ -44,7 +45,7 @@
* DESTDIR:: Supporting staged installs.
* Directory Variables:: Variables for installation directories.
* Standard Targets:: Standard targets for users.
-* Install Command Categories:: Three categories of commands in the `install'
+* Install Command Categories:: Three categories of commands in the 'install'
rule: normal, pre-install and post-install.
@end menu
@@ -685,7 +686,7 @@
datarootdir = $(prefix)/share
datadir = $(datarootdir)
exec_prefix = $(prefix)
-# Where to put the executable for the command `gcc'.
+# Where to put the executable for the command 'gcc'.
bindir = $(exec_prefix)/bin
# Where to put the directories used by the compiler.
libexecdir = $(exec_prefix)/libexec
@@ -781,9 +782,9 @@
$(INSTALL_DATA) $$d/foo.info \
"$(DESTDIR)$(infodir)/foo.info"
# Run install-info only if it exists.
-# Use `if' instead of just prepending `-' to the
+# Use 'if' instead of just prepending '-' to the
# line so we notice real errors from install-info.
-# Use `$(SHELL) -c' because some shells do not
+# Use '$(SHELL) -c' because some shells do not
# fail gracefully when there is an unknown command.
$(POST_INSTALL)
if $(SHELL) -c 'install-info --version' \
- gnustandards ChangeLog make-stds.texi,
karl <=