42 |
|
mkdir -p %{i}/lib |
43 |
|
mkdir -p %{i}/bin |
44 |
|
# Catch-all |
45 |
< |
find . -type f ! -path "./lib/*.%{libext}" -name "*.%{libext}" -exec mv {} %{i}/lib \; |
46 |
< |
find . -type f ! -path "./bin/*.exe" -name "*.exe" -exec mv {} %{i}/bin \; |
45 |
> |
find . -type f ! -path "./lib/*.%{libext}" -name "*.%{libext}" -exec ln -sf {} %{i}/lib \; |
46 |
> |
find . -type f ! -path "./bin/*.exe" -name "*.exe" -exec ln -sf {} %{i}/bin; ln -sf \; |
47 |
|
|
48 |
|
# Libraries from extern (not found cause they are symlinks) |
49 |
|
cp -rdL daq/extern/*/linuxx86/lib/* %{i}/lib |