Another error:

mv -f .deps/sqlite3.Tpo .deps/sqlite3.Plo
/bin/bash ./libtool --tag=CC   --mode=link gcc -D_REENTRANT=1 
-DSQLITE_THREADSAFE=1  -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_RTREE -fPIC 
-DHAVE_MREMAP=0 -no-undefined -version-info 8:6:8  -o libsqlite3.la -rpath 
/usr/local/lib sqlite3.lo  -ldl -lpthread 
libtool: link: gcc -shared  -fPIC -DPIC  .libs/sqlite3.o   -ldl -lpthread  
  -Wl,-soname -Wl,libsqlite3.so.0 -o .libs/libsqlite3.so.0.8.6
libtool: link: (cd ".libs" && rm -f "libsqlite3.so.0" && ln -s 
"libsqlite3.so.0.8.6" "libsqlite3.so.0")
libtool: link: (cd ".libs" && rm -f "libsqlite3.so" && ln -s 
"libsqlite3.so.0.8.6" "libsqlite3.so")
libtool: link: ar cru .libs/libsqlite3.a  sqlite3.o
ar: `u' modifier ignored since `D' is the default (see `U')
libtool: link: ranlib .libs/libsqlite3.a
libtool: link: ( cd ".libs" && rm -f "libsqlite3.la" && ln -s 
"../libsqlite3.la" "libsqlite3.la" )
gcc -DPACKAGE_NAME=\"sqlite\" -DPACKAGE_TARNAME=\"sqlite\" 
-DPACKAGE_VERSION=\"3.8.5\" -DPACKAGE_STRING=\"sqlite\ 3.8.5\" 
-DPACKAGE_BUGREPORT=\"http://www.sqlite.org\"; -DPACKAGE_URL=\"\" 
-DPACKAGE=\"sqlite\" -DVERSION=\"3.8.5\" -DSTDC_HEADERS=1 
-DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 
-DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 
-DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" 
-DHAVE_FDATASYNC=1 -DHAVE_USLEEP=1 -DHAVE_LOCALTIME_R=1 -DHAVE_GMTIME_R=1 
-DHAVE_DECL_STRERROR_R=1 -DHAVE_STRERROR_R=1 -DHAVE_READLINE=1 
-DHAVE_POSIX_FALLOCATE=1 -I.    -D_REENTRANT=1 -DSQLITE_THREADSAFE=1  
-DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_RTREE -fPIC -DHAVE_MREMAP=0 -MT 
shell.o -MD -MP -MF .deps/shell.Tpo -c -o shell.o shell.c
mv -f .deps/shell.Tpo .deps/shell.Po
/bin/bash ./libtool --tag=CC   --mode=link gcc -D_REENTRANT=1 
-DSQLITE_THREADSAFE=1  -DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_RTREE -fPIC 
-DHAVE_MREMAP=0   -o sqlite3 shell.o ./libsqlite3.la -lreadline -lcurses  
-ldl -lpthread 
libtool: link: gcc -D_REENTRANT=1 -DSQLITE_THREADSAFE=1 
-DSQLITE_ENABLE_FTS3 -DSQLITE_ENABLE_RTREE -fPIC -DHAVE_MREMAP=0 -o 
.libs/sqlite3 shell.o  ./.libs/libsqlite3.so -lreadline -lcurses -ldl 
-lpthread
make[1]: Leaving directory 
'/home/wkozaczuk/projects/osv/apps/ruby-publify/sqlite-autoconf-3080500'
Traceback (most recent call last):
  File "scripts/module.py", line 281, in <module>
    args.func(args)
  File "scripts/module.py", line 234, in build
    make_modules(modules, args)
  File "scripts/module.py", line 124, in make_modules
    raise Exception('make failed for ' + module.name)
Exception: make failed for ruby-publify
./scripts/build failed: jdkbase=$jdkbase ARCH=$arch mode=$mode 
OSV_BASE=$SRC OSV_BUILD_PATH=$OSV_BUILD_PATH scripts/module.py $j_arg build 
-c $modules $usrskel_arg $no_required_arg


On Tuesday, January 16, 2018 at 2:45:06 PM UTC-5, Geraldo Netto wrote:
>
> Signed-off-by: geraldo netto <[email protected] <javascript:>> 
> --- 
>  ruby-publify/Makefile | 8 ++++++-- 
>  1 file changed, 6 insertions(+), 2 deletions(-) 
>
> diff --git a/ruby-publify/Makefile b/ruby-publify/Makefile 
> index 9f9774c..ed29751 100644 
> --- a/ruby-publify/Makefile 
> +++ b/ruby-publify/Makefile 
> @@ -5,18 +5,21 @@ PUBLIFY_VER=v8.1.1 
>  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 
> + 
>  publify: 
>          git clone -b ${PUBLIFY_VER} --depth 1 
> https://github.com/publify/publify.git 
>          rm publify/config/environments/production.rb 
> + 
>  ROOTFS/publify: publify 
>          mkdir -p ROOTFS/publify 
>          cd publify && git archive ${PUBLIFY_VER} | tar -x -C 
> ../ROOTFS/publify 
> @@ -36,6 +39,7 @@ ROOTFS/publify/vendor/bundle: ROOTFS/publify 
>  ROOTFS/publify/bin/rails 
>          cd ROOTFS/publify && bundle exec rake db:migrate 
>          cd ROOTFS/publify && bundle exec rake db:seed 
>          cd ROOTFS/publify && bundle exec rake assets:precompile 
> + 
>  ROOTFS: ROOTFS/publify/vendor/bundle ROOTFS/libsqlite3.so.0 
>   
>  usr.manifest: 
> -- 
> 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.

Reply via email to