Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
dfc4c53e
Commit
dfc4c53e
authored
Nov 13, 2005
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use cp -R instead of CpMac -r in the macosx-dmg script on Mac OS X 10.4
parent
43410ee3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
extras/MacOSX/macosx-dmg
extras/MacOSX/macosx-dmg
+14
-1
No files found.
extras/MacOSX/macosx-dmg
View file @
dfc4c53e
...
...
@@ -36,10 +36,23 @@ dev=`hdid -nomount "${imgName}.dmg" | grep '/dev/disk[0-9]*' | cut -d " " -f 1`
mkdir
./mountpoint
mount
-t
hfs
${
dev
}
./mountpoint
HOSTMACHINE
=
`
gcc
-dumpmachine
`
case
$HOSTMACHINE
in
ppc-darwin
)
# Mac OS X < 10.4
CP
=
"/Developer/Tools/CpMac -r"
CPR
=
"-r"
;;
*
)
CP
=
"cp -R"
CPR
=
"-R"
;;
esac
echo
"Copying contents to
${
imgName
}
:"
for
i
in
${
dirName
}
/
*
;
do
echo
"
${
i
}
"
/Developer/Tools/CpMac
-r
"
${
i
}
"
./mountpoint
${
CP
}
"
${
i
}
"
./mountpoint
done
umount ./mountpoint
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment