2003-09-03 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Wed, 3 Sep 2003 20:58:38 +0000 (20:58 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Wed, 3 Sep 2003 20:58:38 +0000 (20:58 +0000)
* gpgme-config.in: Use $libdir, not @libdir@, for the echo
command.

trunk/gpgme/ChangeLog
trunk/gpgme/gpgme-config.in

index 9be8f3f739a13ee65dae21f953949bae65db8212..58669e7e1ce93dadb0578f3b6d167db7303b1770 100644 (file)
@@ -1,5 +1,8 @@
 2003-09-03  Marcus Brinkmann  <marcus@g10code.de>
 
+       * gpgme-config.in: Use $libdir, not @libdir@, for the echo
+       command.
+
        * gpgme-config.in: Rewritten.
        * gpgme.m4: Rewritten.
 
index 4e428db038ba993772c87f38f90883c49a884c2b..b21013e9b2d73b1ab04d8c9ef510007a88678958 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
-#    Copyright (C) 1999, 2002 Free Software Foundation, Inc.
+# Copyright (C) 1999, 2002, 2003 Free Software Foundation, Inc.
 #
 # This file is free software; as a special exception the author gives
 # unlimited permission to copy and/or distribute it, with or without
@@ -36,12 +36,12 @@ usage()
     cat <<EOF
 Usage: gpgme-config [OPTIONS]
 Options:
+       [--thread={${thread_modules}}]
        [--prefix]
        [--exec-prefix]
        [--version]
        [--libs]
        [--cflags]
-       [--thread={${thread_modules}}]
 EOF
     exit $1
 }
@@ -84,7 +84,7 @@ while test $# -gt 0; do
            output="$output $gpg_error_cflags"
            ;;
        --libs)
-            output="$output -L@libdir@"
+            output="$output -L$libdir"
            case "$thread_module" in
                pthread)
                    output="$output -lgpgme-pthread $libs_pthread"