diff options
Diffstat (limited to 'repo/system/libxcrypt.xibuild')
-rw-r--r-- | repo/system/libxcrypt.xibuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/repo/system/libxcrypt.xibuild b/repo/system/libxcrypt.xibuild index 8fd8dd3..f1e1c35 100644 --- a/repo/system/libxcrypt.xibuild +++ b/repo/system/libxcrypt.xibuild @@ -9,10 +9,11 @@ DESC="A modern library for one-way hashing of passwords" build () { CC=gcc ./configure --prefix=/usr make - make DESTDIR=$PKG_DEST install } package () { + make DESTDIR=$PKG_DEST install + # this is probably wrong ln $PKG_DEST/usr/lib/libcrypt.so $PKG_DEST/usr/lib/libcrypt.so.2 } |