diff options
author | jlam <jlam@pkgsrc.org> | 2001-09-27 06:36:47 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-09-27 06:36:47 +0000 |
commit | 879b3ed1ac7a1f40174d3bf5b804c0029f0cb360 (patch) | |
tree | dbca360d57195d2aa31f68f3cd635a66672db6dc /audio | |
parent | 92642117ab52169b817eba984b33ede7f7850e46 (diff) | |
download | pkgsrc-879b3ed1ac7a1f40174d3bf5b804c0029f0cb360.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')
-rw-r--r-- | audio/realplayer/scripts/pre-extract | 7 |
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 |