Skip to content

Commit

Permalink
UUID preserve links when copying to installroot (#809)
Browse files Browse the repository at this point in the history
Fixes #608.
  • Loading branch information
aaniin authored and dberzano committed Aug 11, 2017
1 parent 995060b commit d9364b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions uuid.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package: UUID
version: v2.27.1
source: https://github.com/alisw/uuid
tag: alice/v2.27.1
source: https://github.com/alisw/uuid
build_requires:
- "GCC-Toolchain:(?!osx)"
- autotools
Expand All @@ -25,9 +25,9 @@ autoreconf -ivf
--enable-libuuid
make ${JOBS:+-j$JOBS} libuuid.la
mkdir -p $INSTALLROOT/lib
cp -p .libs/libuuid.a* $INSTALLROOT/lib
cp -a .libs/libuuid.a* $INSTALLROOT/lib
if [[ ${ARCHITECTURE:0:3} != osx ]]; then
cp -p .libs/libuuid.so* $INSTALLROOT/lib
cp -a .libs/libuuid.so* $INSTALLROOT/lib
fi
mkdir -p $INSTALLROOT/include
make install-uuidincHEADERS
Expand Down

0 comments on commit d9364b8

Please sign in to comment.