summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2004-10-22 07:17:21 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2004-10-22 07:17:21 +0000
commit04e9c21f2e452d580cdbe85b2cef91ff3e1d8bbd (patch)
treee91ea8e6619bf9f7f5dc7ecac7e739ddccd202f6 /shell
parent9231ccb3dda90bf9081d3f0795722956cc757c80 (diff)
INTEGRATION: CWS shellfix01 (1.3.36); FILE MERGED
2004/09/14 07:07:22 obr 1.3.36.1: #i30170# file uris now encoded on-the-fly
Diffstat (limited to 'shell')
-rw-r--r--shell/source/unix/misc/makefile.mk12
1 files changed, 9 insertions, 3 deletions
diff --git a/shell/source/unix/misc/makefile.mk b/shell/source/unix/misc/makefile.mk
index e3d51256832c..aa8f6cd6d1c5 100644
--- a/shell/source/unix/misc/makefile.mk
+++ b/shell/source/unix/misc/makefile.mk
@@ -2,9 +2,9 @@
#
# $RCSfile: makefile.mk,v $
#
-# $Revision: 1.3 $
+# $Revision: 1.4 $
#
-# last change: $Author: rt $ $Date: 2004-06-17 15:42:14 $
+# last change: $Author: rt $ $Date: 2004-10-22 08:17:21 $
#
# The Contents of this file are made available subject to the terms of
# either of the following licenses
@@ -82,6 +82,9 @@ SCRIPTFILES = \
$(BIN)$/gnome-open-url \
$(BIN)$/kde-open-url
+AWKFILES = \
+ $(BIN)$/uri-encode
+
OBJFILES = \
$(OBJ)$/gnome-open-url.obj
@@ -97,8 +100,11 @@ APP1STDLIBS=-ldl
.INCLUDE : target.mk
-ALLTAR : $(SCRIPTFILES)
+ALLTAR : $(SCRIPTFILES) $(AWKFILES)
$(SCRIPTFILES) : $$(@:f:+".sh")
+@tr -d "\015" < $(@:f:+".sh") > $@
+$(AWKFILES) : $$(@:f:+".awk")
+ +@tr -d "\015" < $(@:f:+".awk") > $@
+