[ekiga] [windows] Fix patch name expansion during building
- From: Eugen Dedu <ededu src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [ekiga] [windows] Fix patch name expansion during building
- Date: Wed, 20 Jul 2011 15:05:34 +0000 (UTC)
commit 0d04f37094c4e5e87f6d6e66df4ee79ef837393f
Author: Eugen Dedu <Eugen Dedu pu-pm univ-fcomte fr>
Date: Wed Jul 20 17:04:57 2011 +0200
[windows] Fix patch name expansion during building
win32/Makefile | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/win32/Makefile b/win32/Makefile
index 5b78992..b56797d 100644
--- a/win32/Makefile
+++ b/win32/Makefile
@@ -423,7 +423,7 @@ endif
cd $(PTLIB_DIR)/plugins; aclocal && autoconf
# apply all ptlib_* patches
cd $(PTLIB_DIR); for i in $(EKIGA_DIR)/win32/diff/ptlib_*; do \
- test `basename $$i` != 'ptlib_*' && (patch -p1 <$$i || exit 1) ;\
+ test "`basename $$i`" != 'ptlib_*' && (patch -p1 <$$i || exit 1) ;\
done; true
touch $@
@@ -563,7 +563,7 @@ endif
cd $(OPAL_DIR)/plugins; aclocal && autoconf
# apply all opal_* patches
cd $(OPAL_DIR); for i in $(EKIGA_DIR)/win32/diff/opal_*; do \
- test `basename $$i` != 'opal_*' && (patch -p1 <$$i || exit 1) ;\
+ test "`basename $$i`" != 'opal_*' && (patch -p1 <$$i || exit 1) ;\
done; true
touch $@
@@ -738,7 +738,7 @@ else
endif
# apply all ekiga_* patches
cd $(EKIGA_DIR); for i in $(EKIGA_DIR)/win32/diff/ekiga_*; do \
- test `basename $$i` != 'ekiga_*' && (patch -p1 <$$i || exit 1) ;\
+ test "`basename $$i`" != 'ekiga_*' && (patch -p1 <$$i || exit 1) ;\
done; true
touch $@
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]