[FE training-materials-updates] labs/autotools-basic: fix stupid double quotes

Thomas Petazzoni thomas.petazzoni at free-electrons.com
Wed Jun 24 16:01:09 CEST 2015


Repository : git://git.free-electrons.com/training-materials.git

On branch  : master
Link       : http://git.free-electrons.com/training-materials/commit/?id=ca79e2545941af870eaa527cfa348f2332d0f8ac

>---------------------------------------------------------------

commit ca79e2545941af870eaa527cfa348f2332d0f8ac
Author: Thomas Petazzoni <thomas.petazzoni at free-electrons.com>
Date:   Tue Jun 23 09:20:50 2015 +0200

    labs/autotools-basic: fix stupid double quotes
    
    Signed-off-by: Thomas Petazzoni <thomas.petazzoni at free-electrons.com>


>---------------------------------------------------------------

ca79e2545941af870eaa527cfa348f2332d0f8ac
 labs/autotools-basics/autotools-basics.tex | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/labs/autotools-basics/autotools-basics.tex b/labs/autotools-basics/autotools-basics.tex
index 3a704ed..966ac45 100644
--- a/labs/autotools-basics/autotools-basics.tex
+++ b/labs/autotools-basics/autotools-basics.tex
@@ -21,7 +21,7 @@ to generated files, we'll put our project under version control, using
 Create the absolutely minimal \code{configure.ac} using just
 \code{AC_INIT} and \code{AC_OUTPUT}. Use \code{git add configure.ac}
 to add this file to the Git repository, and
-\code{git commit -s -m ``Initial configure.ac''} to commit this first
+\code{git commit -s -m "Initial configure.ac"} to commit this first
 \code{configure.ac}.
 
 Use \code{autoreconf -i}, look at which files where generated. Thanks
@@ -72,8 +72,8 @@ Run \code{make dist}, and look at the tarball that is generated. Your
 project is ready to be released!
 
 Now, run \code{git add} on \code{configure.ac}, \code{Makefile.am} and
-\code{hello.c}, and do a new commit: \code{git commit -s -m ``Add a
-  real program''}. If you run \code{git status}, you can see that
+\code{hello.c}, and do a new commit: \code{git commit -s -m "Add a
+  real program"}. If you run \code{git status}, you can see that
 there are really a lot of files generated by {\em autotols}, so add a
 \code{.gitignore} file to tell Git to simply ignore them. This file
 should contain something like:



More information about the training-materials-updates mailing list