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

Side by Side Diff: third_party/libxslt/linux/xslt-config

Issue 661058: libxslt update (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 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
« no previous file with comments | « third_party/libxslt/linux/libxslt/xsltwin32config.h ('k') | third_party/libxslt/ltmain.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 exec_prefix_set=no 5 exec_prefix_set=no
6 includedir=${prefix}/include 6 includedir=${prefix}/include
7 libdir=${exec_prefix}/lib 7 libdir=${exec_prefix}/lib
8 8
9 usage() 9 usage()
10 { 10 {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 --exec-prefix=*) 53 --exec-prefix=*)
54 exec_prefix=$optarg 54 exec_prefix=$optarg
55 exec_prefix_set=yes 55 exec_prefix_set=yes
56 ;; 56 ;;
57 57
58 --exec-prefix) 58 --exec-prefix)
59 echo $exec_prefix 59 echo $exec_prefix
60 ;; 60 ;;
61 61
62 --version) 62 --version)
63 » echo 1.1.24 63 » echo 1.1.26
64 exit 0 64 exit 0
65 ;; 65 ;;
66 66
67 --plugins) 67 --plugins)
68 echo /usr/local/lib/libxslt-plugins 68 echo /usr/local/lib/libxslt-plugins
69 exit 0 69 exit 0
70 ;; 70 ;;
71 71
72 --help) 72 --help)
73 usage 0 73 usage 0
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 for i in $rev_libs; do 128 for i in $rev_libs; do
129 case " $ord_libs " in 129 case " $ord_libs " in
130 *\ $i\ *) ;; # already there 130 *\ $i\ *) ;; # already there
131 *) ord_libs="$i $ord_libs" ;; # add it to output in reverse order 131 *) ord_libs="$i $ord_libs" ;; # add it to output in reverse order
132 esac 132 esac
133 done 133 done
134 134
135 echo $other_flags $ord_libs 135 echo $other_flags $ord_libs
136 136
137 exit 0 137 exit 0
OLDNEW
« no previous file with comments | « third_party/libxslt/linux/libxslt/xsltwin32config.h ('k') | third_party/libxslt/ltmain.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698