From f5fcfe4dae71b7d86ae4835536bac6b3f75be8f8 Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 11 Dec 2013 03:14:46 -0500 Subject: [PATCH 1/3] init.sh: sudo pip install and make sure rgbds man dirs exist --- init.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/init.sh b/init.sh index a0cc1ccd..7577f4c4 100755 --- a/init.sh +++ b/init.sh @@ -4,6 +4,8 @@ git clone git://github.com/bentley/rgbds.git && \ cd rgbds && \ make && \ +mkdir -p /usr/local/man/man1 && \ +mkdir -p /usr/local/man/man7 && \ sudo make install && \ cd .. && \ rm -rf rgbds @@ -12,5 +14,5 @@ rm -rf rgbds git submodule init && \ git submodule update && \ sudo easy_install pip && \ -pip install -r extras/requirements.txt +sudo pip install -r extras/requirements.txt From abda52678232aea443437135932bb5854ec3c2dc Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 11 Dec 2013 20:33:41 -0500 Subject: [PATCH 2/3] bump pokemontools for fixed wram label handling --- extras | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras b/extras index f35bb2c5..b0fa67a5 160000 --- a/extras +++ b/extras @@ -1 +1 @@ -Subproject commit f35bb2c5cc390ec0008cede2721104592dbcb29d +Subproject commit b0fa67a51191a9ddc2a4ce548ade0243b6be554c From 7a1f488041a26e964f46b05b99897f3e27389028 Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 11 Dec 2013 23:33:53 -0500 Subject: [PATCH 3/3] init.sh: sudo mkdir -p --- init.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/init.sh b/init.sh index 7577f4c4..671f61fd 100755 --- a/init.sh +++ b/init.sh @@ -4,8 +4,7 @@ git clone git://github.com/bentley/rgbds.git && \ cd rgbds && \ make && \ -mkdir -p /usr/local/man/man1 && \ -mkdir -p /usr/local/man/man7 && \ +sudo mkdir -p /usr/local/man/man{1,7} && \ sudo make install && \ cd .. && \ rm -rf rgbds