Signed-off-by: geraldo netto <[email protected]> --- ruby-rails-example/Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/ruby-rails-example/Makefile b/ruby-rails-example/Makefile index 3c2c234..b11943f 100644 --- a/ruby-rails-example/Makefile +++ b/ruby-rails-example/Makefile @@ -5,18 +5,21 @@ RAILS_VER=4.1.7 JSON_VER=1.8.2 sqlite-autoconf-3080500.tar.gz: - wget "http://www.sqlite.org/2014/sqlite-autoconf-3080500.tar.gz" + wget -c "http://www.sqlite.org/2014/sqlite-autoconf-3080500.tar.gz" sqlite-autoconf-3080500: sqlite-autoconf-3080500.tar.gz tar xvf sqlite-autoconf-3080500.tar.gz + sqlite-autoconf-3080500/.libs/libsqlite3.so.0.8.6: sqlite-autoconf-3080500 cd sqlite-autoconf-3080500 && ./configure && make CFLAGS="-fPIC -DHAVE_MREMAP=0" - + ROOTFS/libsqlite3.so.0: sqlite-autoconf-3080500/.libs/libsqlite3.so.0.8.6 cp sqlite-autoconf-3080500/.libs/libsqlite3.so.0.8.6 ROOTFS/libsqlite3.so.0 -tmp/bin/rails: + +tmp/bin/rails: GEM_HOME=tmp PATH=tmp/bin:$$PATH gem install --no-ri --no-rdoc rails -v ${RAILS_VER} GEM_HOME=tmp PATH=tmp/bin:$$PATH gem install --no-ri --no-rdoc railties -v ${RAILS_VER} + ROOTFS/osv_test: tmp/bin/rails mkdir -p ROOTFS env GEM_HOME=tmp PATH=tmp/bin:$$PATH tmp/bin/rails new ROOTFS/osv_test -- 2.7.4 -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
