diff options
Diffstat (limited to 'editors/abiword/files/patch-aq')
-rw-r--r-- | editors/abiword/files/patch-aq | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/editors/abiword/files/patch-aq b/editors/abiword/files/patch-aq new file mode 100644 index 000000000..98ce28093 --- /dev/null +++ b/editors/abiword/files/patch-aq @@ -0,0 +1,27 @@ +--- src/config/abi_defs.mk.orig Sun Jun 12 16:07:25 2005 ++++ src/config/abi_defs.mk Sun Jun 12 16:08:49 2005 +@@ -202,11 +202,11 @@ + ## INSTALL program... + + define MAKE_OBJDIR +-if test ! -d $(@D); then rm -rf $(@D); mkdir -p $(@D); fi ++if test ! -d $(@D); then rm -rf $(@D); $(ABIMKDIR) -p $(@D); fi + endef + + define VERIFY_DIRECTORY +-if test ! -d xxxx; then rm -rf xxxx; mkdir -p xxxx; fi ++if test ! -d xxxx; then rm -rf xxxx; $(ABIMKDIR) -p xxxx; fi + endef + + ifeq ($(OS_NAME), WIN32) +@@ -251,7 +251,9 @@ + ################################################################## + ################################################################## + +-ABICOPY=cp ++ABICOPY = cp ++ABICHMOD = chmod ++ABIMKDIR = mkdir -m u=rwx,go=rx + + ifdef ABISOURCE_LICENSED_TRADEMARKS + ABI_TMDEFS= -DABISOURCE_LICENSED_TRADEMARKS |