-created a qpid service script Change-Id: I380333efad2954e7a9b6d1b27dc8a497cf38acf3 Former-commit-id:ec584b4d4b
[formerlyff34587e94
] [formerly54697ff658
[formerly ee5806c98eb57680403e4f7768f92af1faa75de4]] Former-commit-id:54697ff658
Former-commit-id:0cf405d8d9
10 lines
196 B
Bash
Executable file
10 lines
196 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#Add local dir processing
|
|
PATH_TO_HERE=`dirname $0`
|
|
cd $PATH_TO_HERE
|
|
|
|
export TOP_DIR=`pwd`
|
|
echo $TOP_DIR
|
|
rpmbuild -ba --target=i386 --define "_topdir $TOP_DIR" SPECS/qpid-cpp-mrg.spec
|
|
|