Former-commit-id:9f19e3f712
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f] Former-commit-id:06a8b51d6d
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
|
|
|