Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
heroku-buildpack-python
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
heroku-buildpack-python
Commits
a0029a84
Commit
a0029a84
authored
Aug 01, 2014
by
Kenneth Reitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
suppress pip-grep errors
parent
2de3b6cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
cryptography
bin/steps/cryptography
+1
-1
pylibmc
bin/steps/pylibmc
+1
-1
No files found.
bin/steps/cryptography
View file @
a0029a84
...
...
@@ -20,7 +20,7 @@ source $BIN_DIR/utils
bpwatch start libffi_install
# If pylibmc exists within requirements, use vendored cryptography.
if
(
pip-grep
-s
requirements.txt cffi pylibmc
)
then
if
(
pip-grep
-s
requirements.txt cffi pylibmc
&> /dev/null
)
then
if
[
-d
".heroku/vendor/lib/libffi-3.1.1"
]
;
then
export
LIBFFI
=
$(
pwd
)
/vendor
...
...
bin/steps/pylibmc
View file @
a0029a84
...
...
@@ -19,7 +19,7 @@ source $BIN_DIR/utils
bpwatch start pylibmc_install
# If pylibmc exists within requirements, use vendored libmemcached.
if
(
pip-grep
-s
requirements.txt pylibmc
)
then
if
(
pip-grep
-s
requirements.txt pylibmc
&> /dev/null
)
then
if
[
-d
".heroku/vendor/lib/sasl2"
]
;
then
export
LIBMEMCACHED
=
$(
pwd
)
/vendor
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment