Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(578)

Side by Side Diff: third_party/libxml/linux/xml2-config

Issue 2951008: Update libxml to 2.7.7. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #! /bin/sh 1 #! /bin/sh
2 2
3 prefix=/usr/local 3 prefix=/usr/local
4 exec_prefix=${prefix} 4 exec_prefix=${prefix}
5 includedir=${prefix}/include 5 includedir=${prefix}/include
6 libdir=${exec_prefix}/lib 6 libdir=${exec_prefix}/lib
7 7
8 usage() 8 usage()
9 { 9 {
10 cat <<EOF 10 cat <<EOF
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 --exec-prefix=*) 51 --exec-prefix=*)
52 exec_prefix=$optarg 52 exec_prefix=$optarg
53 libdir=$exec_prefix/lib 53 libdir=$exec_prefix/lib
54 ;; 54 ;;
55 55
56 --exec-prefix) 56 --exec-prefix)
57 echo $exec_prefix 57 echo $exec_prefix
58 ;; 58 ;;
59 59
60 --version) 60 --version)
61 » echo 2.6.32 61 » echo 2.7.7
62 exit 0 62 exit 0
63 ;; 63 ;;
64 64
65 --help) 65 --help)
66 usage 0 66 usage 0
67 ;; 67 ;;
68 68
69 --cflags) 69 --cflags)
70 echo -I${includedir}/libxml2 70 echo -I${includedir}/libxml2
71 ;; 71 ;;
(...skipping 25 matching lines...) Expand all
97 97
98 *) 98 *)
99 usage 99 usage
100 exit 1 100 exit 1
101 ;; 101 ;;
102 esac 102 esac
103 shift 103 shift
104 done 104 done
105 105
106 exit 0 106 exit 0
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698