#!/bin/bash
|
|
# --- SDE-COPYRIGHT-NOTE-BEGIN ---
|
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
|
|
#
|
|
# Filename: scripts/Create-Links
|
|
# Copyright (C) 2006 - 2008 The OpenSDE Project
|
|
# Copyright (C) 2004 - 2006 The T2 SDE Project
|
|
# Copyright (C) 1998 - 2003 Clifford Wolf
|
|
#
|
|
# More information can be found in the files COPYING and README.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; version 2 of the License. A copy of the
|
|
# GNU General Public License can be found in the file COPYING.
|
|
# --- SDE-COPYRIGHT-NOTE-END ---
|
|
|
|
sderootdirs="scripts bin etc lib misc doc src package architecture target"
|
|
|
|
linkconfig=
|
|
linkbuild=
|
|
|
|
while [ "$1" ] ; do
|
|
case "$1" in
|
|
-config)
|
|
linkconfig=config ; shift ;;
|
|
-build)
|
|
linkbuild=build ; shift ;;
|
|
-*)
|
|
echo
|
|
echo "Usage: ./scripts/Create-Links [ -config ] [ -build ] target-dir"
|
|
echo
|
|
exit 1 ;;
|
|
*)
|
|
break ;;
|
|
esac
|
|
done
|
|
|
|
if [ -z "$1" -o "$#" != 1 -o ! -d "$1" ] ; then
|
|
exec $0 --help
|
|
fi
|
|
|
|
for x in $sderootdirs download $linkconfig $linkbuild; do
|
|
[ -e $x ] || mkdir $x
|
|
[ -e $1/$x ] || ln -vs `pwd`/$x $1/$x
|
|
done
|
|
|
|
if [ ! -e $1/backup -a -e `pwd`/backup ] ; then
|
|
ln -vs `pwd`/backup $1/backup
|
|
fi
|