forked from conda-archive/conda-recipes
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
flex: Fix recipe because it was broken
- Loading branch information
1 parent
bdf66ed
commit 8cd3bc6
Showing
2 changed files
with
8 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,6 @@ | ||
#!/bin/bash | ||
|
||
# gstreamer expects libffi.la to be in lib64 for some reason. | ||
mkdir $PREFIX/lib64 | ||
cp -r $LIBRARY_PATH/libffi* $PREFIX/lib64 | ||
ls $PREFIX/lib64 | ||
|
||
# The datarootdir option places the docs into a temp folder that won't | ||
# be included in the package (it is about 12MB). | ||
./configure --disable-examples --prefix="$PREFIX" --datarootdir=`pwd`/tmpshare | ||
./configure --prefix="$PREFIX" | ||
make | ||
make install | ||
|
||
# Remove the created lib64 directory | ||
rm -rf $PREFIX/lib64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters