- Allow multiple optional arguments in eclipse-copy-platform.sh
This commit is contained in:
parent
5ca4497fb9
commit
bbd9a49223
@ -14,19 +14,31 @@
|
||||
# this as a substring, it will be included. You need only run
|
||||
# this script once, it will link both the platform and the other
|
||||
# optionally-selected parts in a single invocation.
|
||||
where=$1
|
||||
eclipse=$2
|
||||
optional=$3
|
||||
|
||||
# Test to see if the minimum arguments
|
||||
# are specified
|
||||
|
||||
if [ $# -lt 2 ]; then
|
||||
echo "Usage: copy-platform where eclipse_base optional_directories"
|
||||
echo "For example: copy-plaform ~/SDK /usr/share/eclipse cdt pydev jdt"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
where=$1; shift
|
||||
eclipse=$1; shift
|
||||
|
||||
mkdir $where
|
||||
cd $where
|
||||
mkdir plugins features
|
||||
|
||||
if test -n "$optional"; then
|
||||
# Are there any optional arguments left?
|
||||
if [ $# -gt 0 ]; then
|
||||
for optional in "$@"; do
|
||||
(cd $eclipse; ls -d plugins/*"$optional"* features/*"$optional"*) |
|
||||
while read f; do
|
||||
ln -s $eclipse/$f $f
|
||||
done
|
||||
done
|
||||
fi
|
||||
|
||||
# Code after this point is automatically created by eclipse.spec.
|
||||
|
@ -1033,6 +1033,9 @@ fi
|
||||
%{_datadir}/%{name}/plugins/org.eclipse.platform.source.linux.gtk.*_3.1.0
|
||||
|
||||
%changelog
|
||||
* Thu Apr 28 2005 Phil Muldoon <pmuldoon@redhat.com> 3.1.0_fc-0.M6.13
|
||||
- Allow multiple optional arguments in eclipse-copy-platform.sh
|
||||
|
||||
* Wed Apr 27 2005 Andrew Overholt <overholt@redhat.com> 3.1.0_fc-0.M6.13
|
||||
- Include epoch in mozilla BuildRequires.
|
||||
- Remove last remaining gij-specific option from eclipse.script.
|
||||
|
Loading…
Reference in New Issue
Block a user