Skip to content

Commit

Permalink
bug 622017 - include minidump_stackwalk in Socorro package
Browse files Browse the repository at this point in the history
git-svn-id: https://socorro.googlecode.com/svn/trunk@2839 efcc4bdc-162a-0410-a8af-5b4b46c5376d
  • Loading branch information
rhelmer committed Dec 30, 2010
1 parent 93771fa commit dddc278
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ test: virtualenv phpunit
phpunit:
cd webapp-php/tests; phpunit *.php

install:
install: minidump_stackwalk
mkdir -p $(PREFIX)/htdocs
mkdir -p $(PREFIX)/application
rsync -a --exclude=".svn" thirdparty $(PREFIX)
Expand All @@ -26,6 +26,8 @@ install:
rsync -a --exclude=".svn" tools $(PREFIX)/application
rsync -a --exclude=".svn" sql $(PREFIX)/application
rsync -a --exclude=".svn" --exclude="tests" webapp-php/ $(PREFIX)/htdocs
rsync -a --exclude=".svn" stackwalk $(PREFIX)/
rsync -a --exclude=".svn" scripts/stackwalk.sh $(PREFIX)/stackwalk/bin/
cd $(PREFIX)/application/scripts/config; for file in *.py.dist; do cp $$file `basename $$file .dist`; done
cd $(PREFIX)/htdocs/modules/auth/config/; for file in *.php-dist; do cp $$file `basename $$file -dist`; done
cd $(PREFIX)/htdocs/modules/recaptcha/config; for file in *.php-dist; do cp $$file `basename $$file -dist`; done
Expand All @@ -47,3 +49,11 @@ lint:

clean:
find ./socorro/ -type f -name "*.pyc" -exec rm {} \;
find ./thirdparty/ -type f -name "*.pyc" -exec rm {} \;
rm -rf ./google-breakpad/

minidump_stackwalk:
svn co http://google-breakpad.googlecode.com/svn/trunk google-breakpad
cd google-breakpad && ./configure --prefix=`pwd`/../stackwalk/
cd google-breakpad && make install

0 comments on commit dddc278

Please sign in to comment.