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

Side by Side Diff: chrome/installer/linux/common/rpm.include

Issue 2299093002: Revert of Support relocatable RPM packages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 3 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 @@include@@variables.include
2
1 # Install the repository signing key (see also: 3 # Install the repository signing key (see also:
2 # https://www.google.com/linuxrepositories/) 4 # https://www.google.com/linuxrepositories/)
3 install_rpm_key() { 5 install_rpm_key() {
4 # Check to see if all keys already exists. 6 # Check to see if all keys already exists.
5 rpm -q gpg-pubkey-7fac5991-4615767f \ 7 rpm -q gpg-pubkey-7fac5991-4615767f \
6 gpg-pubkey-d38b4796-570c8cd3 > /dev/null 2>&1 8 gpg-pubkey-d38b4796-570c8cd3 > /dev/null 2>&1
7 if [ "$?" -eq "0" ]; then 9 if [ "$?" -eq "0" ]; then
8 # Key already exists 10 # Key already exists
9 return 0 11 return 0
10 fi 12 fi
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 get_lib_dir() { 372 get_lib_dir() {
371 if [ "$DEFAULT_ARCH" = "i386" ]; then 373 if [ "$DEFAULT_ARCH" = "i386" ]; then
372 LIBDIR=lib 374 LIBDIR=lib
373 elif [ "$DEFAULT_ARCH" = "x86_64" ]; then 375 elif [ "$DEFAULT_ARCH" = "x86_64" ]; then
374 LIBDIR=lib64 376 LIBDIR=lib64
375 else 377 else
376 echo Unknown CPU Architecture: "$DEFAULT_ARCH" 378 echo Unknown CPU Architecture: "$DEFAULT_ARCH"
377 exit 1 379 exit 1
378 fi 380 fi
379 } 381 }
OLDNEW
« no previous file with comments | « chrome/installer/linux/common/prerm.include ('k') | chrome/installer/linux/common/symlinks.include » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698