summaryrefslogtreecommitdiff
path: root/audio/realplayer
diff options
context:
space:
mode:
authorjlam <jlam>2001-09-27 06:36:47 +0000
committerjlam <jlam>2001-09-27 06:36:47 +0000
commit31efca63dc5f34be53906f92f06d29008b73ed89 (patch)
treedbca360d57195d2aa31f68f3cd635a66672db6dc /audio/realplayer
parente49dd361c39d9b4a4a305f81d7154fc8b414633c (diff)
downloadpkgsrc-31efca63dc5f34be53906f92f06d29008b73ed89.tar.gz
Don't try to chmod the installer if it's already executable. This is
needed in case the package builder doesn't own the distfile.
Diffstat (limited to 'audio/realplayer')
-rw-r--r--audio/realplayer/scripts/pre-extract7
1 files changed, 5 insertions, 2 deletions
diff --git a/audio/realplayer/scripts/pre-extract b/audio/realplayer/scripts/pre-extract
index 82adef21797..9096487f4ba 100644
--- a/audio/realplayer/scripts/pre-extract
+++ b/audio/realplayer/scripts/pre-extract
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: pre-extract,v 1.1.1.1 2000/12/25 09:35:59 jlam Exp $
+# $NetBSD: pre-extract,v 1.2 2001/09/27 06:36:47 jlam Exp $
# The number of seconds to pause before continuing with the extraction
# process.
@@ -35,4 +35,7 @@ EOF
sleep ${delay}
-${CHMOD} +x ${RP_INSTALLER}
+if [ ! -x ${RP_INSTALLER} ]
+then
+ ${CHMOD} +x ${RP_INSTALLER}
+fi