10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-28 16:12:26 +02:00
quantum_package/scripts/prepare_module.sh

16 lines
327 B
Bash
Raw Normal View History

2014-04-01 11:34:35 +02:00
#!/bin/bash
2014-04-03 01:45:22 +02:00
# This script is used by module Makefiles, and should not be used by users.
2014-04-01 11:34:35 +02:00
# Checks if all the other module directories are properly linked in the
# current directory. If not, the links are created.
2014-04-03 01:45:22 +02:00
# Wed Apr 2 14:35:42 CEST 2014
2014-04-01 11:34:35 +02:00
for dir in $@
do
if [[ ! -h $dir ]] ;
then
ln -s ../$dir $dir
fi
done