Skip to content

Instantly share code, notes, and snippets.

@flores
Created April 15, 2011 01:54
Show Gist options
  • Save flores/920984 to your computer and use it in GitHub Desktop.
Save flores/920984 to your computer and use it in GitHub Desktop.
blueprint make clean removes man files, breaks subsequent install
For ticket...
lo@puter:~/blueprint$ make clean
rm -f \
control \
blueprint/**.pyc \
man/man*/*.[12345678] man/man*/*.html
lo@puter:~/blueprint$ make
make: Nothing to be done for `all'.
lo@puter:~/blueprint$ sudo make install
[sudo] password for lo:
Sorry, try again.
[sudo] password for lo:
install -d /usr/local/bin
install bin/blueprint /usr/local/bin/
for PROGNAME in \
blueprint-apply \
blueprint-create \
blueprint-destroy \
blueprint-list \
blueprint-show \
; do \
{ \
echo "#!/usr/bin/python2.6"; \
tail -n+2 bin/$PROGNAME; \
} >/usr/local/bin/$PROGNAME; \
chmod 755 /usr/local/bin/$PROGNAME; \
done
install -d /usr/local/lib/python2.6/dist-packages/blueprint/
install -m644 \
blueprint/chef.py \
blueprint/context_managers.py \
blueprint/git.py \
blueprint/__init__.py \
blueprint/manager.py \
blueprint/puppet.py \
blueprint/sh.py \
blueprint/util.py \
/usr/local/lib/python2.6/dist-packages/blueprint/
install -d /usr/local/lib/python2.6/dist-packages/blueprint/backend/
install -m644 \
blueprint/backend/apt.py \
blueprint/backend/files.py \
blueprint/backend/gem.py \
blueprint/backend/__init__.py \
blueprint/backend/php.py \
blueprint/backend/pypi.py \
blueprint/backend/sources.py \
/usr/local/lib/python2.6/dist-packages/blueprint/backend/
PYTHONPATH=/usr/local/lib/python2.6/dist-packages /usr/bin/python2.6 -mcompileall \
/usr/local/lib/python2.6/dist-packages/blueprint
Listing /usr/local/lib/python2.6/dist-packages/blueprint ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/__init__.py ...
Listing /usr/local/lib/python2.6/dist-packages/blueprint/backend ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/backend/__init__.py ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/backend/apt.py ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/backend/files.py ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/backend/gem.py ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/backend/php.py ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/backend/pypi.py ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/backend/sources.py ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/chef.py ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/context_managers.py ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/git.py ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/manager.py ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/puppet.py ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/sh.py ...
Compiling /usr/local/lib/python2.6/dist-packages/blueprint/util.py ...
install -d /usr/local/share/man/man1
install -m644 \
man/man1/blueprint.1 \
man/man1/blueprint-apply.1 \
man/man1/blueprint-create.1 \
man/man1/blueprint-destroy.1 \
man/man1/blueprint-list.1 \
man/man1/blueprint-show.1 \
/usr/local/share/man/man1/
install: cannot stat `man/man1/blueprint.1': No such file or directory
install: cannot stat `man/man1/blueprint-apply.1': No such file or directory
install: cannot stat `man/man1/blueprint-create.1': No such file or directory
install: cannot stat `man/man1/blueprint-destroy.1': No such file or directory
install: cannot stat `man/man1/blueprint-list.1': No such file or directory
install: cannot stat `man/man1/blueprint-show.1': No such file or directory
make: *** [install-man] Error 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment