mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-27 15:38:19 +01:00
apply a bit of directories-with-spaces-in-names protection to build-gtk-stack
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@14018 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
c9adc8926b
commit
b20be19088
1 changed files with 3 additions and 3 deletions
|
|
@ -316,11 +316,11 @@ if [ x$patch != x ] ; then
|
|||
if uname -a | grep --silent arwin ; then
|
||||
patches=`ls $this_script_dir/current-gtk-patches/*.patch`
|
||||
else
|
||||
patches=$this_script_dir/current-gtk-patches/gtkrelocation.patch
|
||||
patches="$this_script_dir/current-gtk-patches/gtkrelocation.patch"
|
||||
fi
|
||||
|
||||
for patch in $patches ; do
|
||||
if patch $unpatch --dry-run -p1 < $patch ; then
|
||||
if patch $unpatch --dry-run -p1 < "$patch" ; then
|
||||
:
|
||||
else
|
||||
echo "$? : Patch $patch no longer applies ($unpatch) cleanly."
|
||||
|
|
@ -330,7 +330,7 @@ if [ x$patch != x ] ; then
|
|||
|
||||
echo "Applying ($unpatch) patches ..."
|
||||
for patch in $patches ; do
|
||||
patch $unpatch -p1 < $patch
|
||||
patch $unpatch -p1 < "$patch"
|
||||
done
|
||||
exit 0
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue