aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKeith Burns (alagalah) <alagalah@gmail.com>2016-06-17 06:28:10 -0700
committerKeith Burns <alagalah@gmail.com>2016-06-18 00:26:45 +0000
commit4928fda10e118ac7eecc296d04b8c93f9078f369 (patch)
tree909920f8a253fef3febad0164d6fba9589ae8c2d
parent3d1dc29927a54140c137cae537cb81c603897f20 (diff)
Build needs prefix else stuff goes in the wrong place
Change-Id: I7e6c8ac8bf754ed9f88da7c691b21aef439993c5 Signed-off-by: Keith Burns (alagalah) <alagalah@gmail.com>
-rw-r--r--nsh-plugin/README-build2
-rwxr-xr-xnsh-plugin/build.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/nsh-plugin/README-build b/nsh-plugin/README-build
index f67cb90..05814a9 100644
--- a/nsh-plugin/README-build
+++ b/nsh-plugin/README-build
@@ -1,6 +1,6 @@
autoreconf -i -f
mkdir build
cd build
-../configure --with-plugin-toolkit
+../configure --prefix /usr
make
sudo make install
diff --git a/nsh-plugin/build.sh b/nsh-plugin/build.sh
index 3aa0a39..613a136 100755
--- a/nsh-plugin/build.sh
+++ b/nsh-plugin/build.sh
@@ -2,6 +2,6 @@
autoreconf -i -f
[ -d build ] || mkdir build
cd build
-../configure --with-plugin-toolkit
+../configure --prefix /usr
make
sudo make install