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

Side by Side Diff: build/linux/libgcrypt-config-wrapper

Issue 301353009: Linux: Remove unused gcrypt gyp code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix build Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/linux/system.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2
3 # This program wraps around libgcrypt-config to generate the correct include and
4 # library paths when cross-compiling using a sysroot.
5
6 sysroot="$1"
7 shift
8
9 if [ -z "$sysroot" ]
10 then
11 echo "usage: $0 /path/to/sysroot [libgcrypt-config-arguments]" >&2
12 exit 1
13 fi
14
15 config_path=$sysroot/usr/bin/libgcrypt-config
16 set -e
17 echo `$config_path "$@" | sed -e 's|/|'$sysroot'/|'`
OLDNEW
« no previous file with comments | « no previous file | build/linux/system.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698