allow simple copy&paste for the series of shell commands in OpenSSL-Query/README.md
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>
Tue, 11 Feb 2020 11:01:31 +0000 (12:01 +0100)
committerRichard Levitte <levitte@openssl.org>
Thu, 13 Feb 2020 16:33:50 +0000 (17:33 +0100)
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/58)

OpenSSL-Query/README.md

index 27dd3fd9886a5c0130b0ef8ad6872004b7b8dc72..25c02b1c8e7bd085c986f1b79c87448c0ce01cb0 100644 (file)
@@ -32,9 +32,8 @@ perl.
 Installation
 ------------
 
-    $ perl Makefile.PL
-    $ make
-    $ make install
+    perl Makefile.PL
+    make && make install
 
 Local installation
 ------------
@@ -43,7 +42,7 @@ For a local installation, you might want to consider using local::lib
 (debian package liblocal-lib-perl).  In that case, running Makefile.PL
 is slightly different:
 
-    perl -Mlocal::lib Makefile.PL
+    perl -Mlocal::lib Makefile.PL
 
 Other than that, follow the instructions in "Installation" above.
 
@@ -58,12 +57,12 @@ Testing
 
 Testing is done like this:
 
-    make test
+    make test
 
 However, it requires that a temporary query service is started as
 well.  This is part of QueryApp, and is started like this:
 
-    $ here=`pwd`
-    $ cd ../QueryApp   # Or wherever you have it checked out
-    PERSONDB=./t/query_data/pdb.yaml CLADB=./t/query_data/cdb.txt \
-      PERL5LIB=./lib:$here/lib plackup bin/query.psgi
+    here=`pwd`                # the directory OpenSSL-Query/
+    cd ../QueryApp            # Or wherever you have it checked out
+    PERSONDB=./t/query_data/pdb.yaml CLADB=./t/query_data/cdb.txt \
+    PERL5LIB=./lib:$here/lib plackup bin/query.psgi