Changeset 281
- Timestamp:
- 09/21/11 13:38:44 (13 years ago)
- Location:
- XMLIO_V2/dev/common
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
XMLIO_V2/dev/common/make_xios
r274 r281 22 22 # Vérification de la présence d'un identifiant d'architecture. 23 23 24 ############################################################### 25 # lecture des chemins propres à l'architecture de la machine # 26 # et configuration de l'environnement # 27 ############################################################### 28 29 rm -f .void_file 30 echo > .void_file 31 rm -rf .void_dir 32 mkdir .void_dir 33 24 34 if [[ !(-z $arch) ]] 25 35 then 26 36 rm -f $install_dir/arch.path 27 37 rm -f $install_dir/arch.fcm 38 rm -f $install_dir/arch.env 28 39 ln -s $install_dir/arch/arch-${arch}.path $install_dir/arch.path 29 40 ln -s $install_dir/arch/arch-${arch}.fcm $install_dir/arch.fcm 41 42 if test -f $install_dir/arch/arch-${arch}.env 43 then 44 ln -s $install_dir/arch/arch-${arch}.env arch.env 45 else 46 ln -s $install_dir/.void_file arch.env 47 fi 48 49 source $install_dir/arch.env 30 50 source $install_dir/arch.path 31 51 else 32 52 echo "Veuillez definir une architecture cible !" 33 53 exit 1
Note: See TracChangeset
for help on using the changeset viewer.