remove questionable idiom

This commit is contained in:
Travis Cross 2012-05-09 14:10:20 +00:00
parent 225eebc20d
commit 0165a813d7
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ if [ -z "$1" ]; then
exit 1;
fi
(mkdir -p rpmbuild && cd $_ && mkdir -p SOURCES BUILD BUILDROOT i386 x86_64 SOURCES SPECS)
(mkdir -p rpmbuild && cd rpmbuild && mkdir -p SOURCES BUILD BUILDROOT i386 x86_64 SOURCES SPECS)
cd $src_repo
rpmbuild --define "_topdir %(pwd)/rpmbuild" \

View File

@ -8,7 +8,7 @@ if [ ! -d .git ]; then
exit 1;
fi
(mkdir -p rpmbuild && cd $_ && mkdir -p SOURCES BUILD BUILDROOT i386 x86_64 SOURCES SPECS)
(mkdir -p rpmbuild && cd rpmbuild && mkdir -p SOURCES BUILD BUILDROOT i386 x86_64 SOURCES SPECS)
cd $src_repo/rpmbuild/SOURCES

View File

@ -14,7 +14,7 @@ dst_name="freeswitch-$cmajor.$cminor.$cmicro"
dst_parent="/tmp/"
dst_dir="/tmp/$dst_name"
(mkdir -p rpmbuild && cd $_ && mkdir -p SOURCES BUILD BUILDROOT i386 x86_64 SPECS)
(mkdir -p rpmbuild && cd rpmbuild && mkdir -p SOURCES BUILD BUILDROOT i386 x86_64 SPECS)
cd $src_repo