Created
September 19, 2016 15:09
-
-
Save stephenwade/de65d87dceed4ba87f66ba8fe059b1da to your computer and use it in GitHub Desktop.
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
2016-09-19 11:07:29 -0400 | |
make | |
all | |
mkdir obj | |
if [ -a /etc/fedora-release ] ; \ | |
then \ | |
sudo dnf update --refresh ; \ | |
sudo dnf install ncurses-devel ; \ | |
elif [ -a /etc/redhat-release ] ; \ | |
then \ | |
sudo yum update ; \ | |
sudo yum install ncurses-devel ; \ | |
elif [ -a /etc/arch-release ] ; \ | |
then \ | |
sudo pacman -Sy ; \ | |
sudo pacman -S ncurses ; \ | |
else \ | |
sudo apt-get update ; \ | |
sudo apt-get install lib32ncurses5-dev lib32ncursesw5-dev ; \ | |
fi | |
mkdir bin | |
/bin/sh: /usr/bin/sudo: Operation not permitted | |
/bin/sh: /usr/bin/sudo: Operation not permitted | |
make: *** [/usr/include/ncurses.h] Error 126 | |
HOMEBREW_VERSION: 0.9.9 | |
ORIGIN: https://github.com/Homebrew/brew | |
HEAD: c9d9e54de6c96ae440506dccb4cac4c77ad408ce | |
Last commit: 3 minutes ago | |
Core tap ORIGIN: https://github.com/Homebrew/homebrew-core | |
Core tap HEAD: 128e33259423e7f9c3ef042533798c3dadd7a0a5 | |
Core tap last commit: 7 hours ago | |
HOMEBREW_PREFIX: /usr/local | |
HOMEBREW_REPOSITORY: /usr/local/Homebrew | |
HOMEBREW_CELLAR: /usr/local/Cellar | |
HOMEBREW_BOTTLE_DOMAIN: https://homebrew.bintray.com | |
CPU: octa-core 64-bit ivybridge | |
Homebrew Ruby: 2.0.0-p648 | |
GCC-4.2: build 0 | |
Clang: 8.0 build 800 | |
Git: 2.8.4 => /Applications/Xcode.app/Contents/Developer/usr/bin/git | |
Perl: /usr/bin/perl | |
Python: /usr/bin/python | |
Ruby: /usr/bin/ruby => /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby | |
Java: 1.8.0_102 | |
macOS: 10.12-x86_64 | |
Xcode: 8.0 | |
CLT: N/A | |
X11: N/A | |
HOMEBREW_CC: clang | |
HOMEBREW_CXX: clang++ | |
SDKROOT: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk | |
MAKEFLAGS: -j8 | |
CMAKE_PREFIX_PATH: /usr/local | |
CMAKE_INCLUDE_PATH: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/usr/include/libxml2:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/usr/include/apache2:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers | |
CMAKE_LIBRARY_PATH: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks/OpenGL.framework/Versions/Current/Libraries | |
CMAKE_FRAMEWORK_PATH: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks | |
MACOSX_DEPLOYMENT_TARGET: 10.12 | |
PKG_CONFIG_LIBDIR: /usr/lib/pkgconfig:/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.12 | |
HOMEBREW_SDKROOT: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk | |
ACLOCAL_PATH: /usr/local/share/aclocal | |
PATH: /usr/local/Homebrew/Library/Homebrew/shims/super:/usr/bin:/bin:/usr/sbin:/sbin |
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
==> Auto-updated Homebrew! | |
Updated Homebrew from b0f3e38 to c9d9e54. | |
No changes to formulae. | |
==> Using the sandbox | |
/usr/bin/sandbox-exec -f /tmp/homebrew20160919-89621-1udywwp.sb nice /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby -W0 -I /usr/local/Homebrew/Library/Homebrew -- /usr/local/Homebrew/Library/Homebrew/build.rb /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula/no-more-secrets.rb --verbose | |
==> Downloading https://github.com/bartobri/no-more-secrets/archive/v0.2.1.tar.gz | |
Already downloaded: /Users/stephen/Library/Caches/Homebrew/no-more-secrets-0.2.1.tar.gz | |
==> Verifying no-more-secrets-0.2.1.tar.gz checksum | |
tar xvzf /Users/stephen/Library/Caches/Homebrew/no-more-secrets-0.2.1.tar.gz | |
x no-more-secrets-0.2.1/ | |
x no-more-secrets-0.2.1/.gitignore | |
x no-more-secrets-0.2.1/COPYING | |
x no-more-secrets-0.2.1/INSTALL.md | |
x no-more-secrets-0.2.1/Makefile | |
x no-more-secrets-0.2.1/README.md | |
x no-more-secrets-0.2.1/no-more-secrets.spec | |
x no-more-secrets-0.2.1/src/ | |
x no-more-secrets-0.2.1/src/main.c | |
x no-more-secrets-0.2.1/src/nms.c | |
x no-more-secrets-0.2.1/src/nms.h | |
x no-more-secrets-0.2.1/src/sneakers.c | |
==> make all | |
mkdir obj | |
if [ -a /etc/fedora-release ] ; \ | |
then \ | |
sudo dnf update --refresh ; \ | |
sudo dnf install ncurses-devel ; \ | |
elif [ -a /etc/redhat-release ] ; \ | |
then \ | |
sudo yum update ; \ | |
sudo yum install ncurses-devel ; \ | |
elif [ -a /etc/arch-release ] ; \ | |
then \ | |
sudo pacman -Sy ; \ | |
sudo pacman -S ncurses ; \ | |
else \ | |
sudo apt-get update ; \ | |
sudo apt-get install lib32ncurses5-dev lib32ncursesw5-dev ; \ | |
fi | |
mkdir bin | |
/bin/sh: /usr/bin/sudo: Operation not permitted | |
/bin/sh: /usr/bin/sudo: Operation not permitted | |
make: *** [/usr/include/ncurses.h] Error 126 | |
==> Formula | |
Path: /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula/no-more-secrets.rb | |
==> Configuration | |
HOMEBREW_VERSION: 0.9.9 | |
ORIGIN: https://github.com/Homebrew/brew | |
HEAD: c9d9e54de6c96ae440506dccb4cac4c77ad408ce | |
Last commit: 2 minutes ago | |
Core tap ORIGIN: https://github.com/Homebrew/homebrew-core | |
Core tap HEAD: 128e33259423e7f9c3ef042533798c3dadd7a0a5 | |
Core tap last commit: 7 hours ago | |
HOMEBREW_PREFIX: /usr/local | |
HOMEBREW_REPOSITORY: /usr/local/Homebrew | |
HOMEBREW_CELLAR: /usr/local/Cellar | |
HOMEBREW_BOTTLE_DOMAIN: https://homebrew.bintray.com | |
CPU: octa-core 64-bit ivybridge | |
Homebrew Ruby: 2.0.0-p648 | |
Clang: 8.0 build 800 | |
Git: 2.8.4 => /Applications/Xcode.app/Contents/Developer/usr/bin/git | |
Perl: /usr/local/bin/perl => /usr/local/Cellar/perl/5.24.0_1/bin/perl | |
Python: /usr/local/bin/python => /usr/local/Cellar/python/2.7.12/Frameworks/Python.framework/Versions/2.7/bin/python2.7 | |
Ruby: /usr/local/bin/ruby => /usr/local/Cellar/ruby/2.3.1/bin/ruby | |
Java: 1.8.0_102 | |
macOS: 10.12-x86_64 | |
Xcode: 8.0 | |
CLT: N/A | |
X11: N/A | |
==> ENV | |
HOMEBREW_CC: clang | |
HOMEBREW_CXX: clang++ | |
SDKROOT: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk | |
MAKEFLAGS: -j8 | |
CMAKE_PREFIX_PATH: /usr/local | |
CMAKE_INCLUDE_PATH: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/usr/include/libxml2:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/usr/include/apache2:/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks/OpenGL.framework/Versions/Current/Headers | |
CMAKE_LIBRARY_PATH: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks/OpenGL.framework/Versions/Current/Libraries | |
CMAKE_FRAMEWORK_PATH: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk/System/Library/Frameworks | |
MACOSX_DEPLOYMENT_TARGET: 10.12 | |
PKG_CONFIG_LIBDIR: /usr/lib/pkgconfig:/usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig/10.12 | |
HOMEBREW_SDKROOT: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.12.sdk | |
ACLOCAL_PATH: /usr/local/share/aclocal | |
PATH: /usr/local/Homebrew/Library/Homebrew/shims/super:/usr/bin:/bin:/usr/sbin:/sbin | |
Error: no-more-secrets 0.2.1 did not build | |
Logs: | |
/Users/stephen/Library/Logs/Homebrew/no-more-secrets/01.make | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment