Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5b526ea98238b4619bf903220041a8cd35b8fa84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
RELEASE_VER=0.3.0

case `uname -m` in 
 	'i386') \
 	mv -f opxml ../../../../org.eclipse.linuxtools.oprofile.core.linux.x86_${RELEASE_VER}.*/os/linux/x86 
 	;; 
 	'i586') 
 	mv -f opxml ../../../../org.eclipse.linuxtools.oprofile.core.linux.x86_${RELEASE_VER}.*/os/linux/x86 
 	;; 
 	'i686') 
 	mv -f opxml ../../../../org.eclipse.linuxtools.oprofile.core.linux.x86_${RELEASE_VER}.*/os/linux/x86 
 	;; 
 	'x86_64') 
 	mv -f opxml ../../../../org.eclipse.linuxtools.oprofile.core.linux.x86_64_${RELEASE_VER}.*/os/linux/x86_64 
 	;; 
 	'ppc') 
 	mv -f opxml ../../../../org.eclipse.linuxtools.oprofile.core.linux.ppc_${RELEASE_VER}.*/os/linux/ppc 
 	;; 
 	'ppc64') 
 	mv -f opxml ../../../../org.eclipse.linuxtools.oprofile.core.linux.ppc_${RELEASE_VER}.*/os/linux/ppc 
 	;; 
 	*) 
 	echo Could not detect system architecture -- please move the opxml binary into the appropriate org.eclipse.linuxtools.oprofile.core.linux.[x86,x86_64,ppc]/os/linux/[x86,x86_64,ppc] directory. 
	exit 1
 	;; 
 	esac && echo Success!

Back to the top