i-nex / I-Nex

System information tool written in gambas3, python, bash
http://i-nex.linux.pl/
174 stars 24 forks source link

Makefile: pixmaps install fails #81

Open martinkg opened 6 years ago

martinkg commented 6 years ago

It seems there is an error in the build script:

Install pixmaps... /usr/bin/make -C pixmaps install make[1]: Entering directory '/builddir/build/BUILD/I-Nex-0c10102578e7c762674eaf9460b0903d76f151db/pixmaps' mkdir -p /builddir/build/BUILDROOT/i-nex-7.6.0-2.20170703git0c10102.fc28.x86_64/usr/share/pixmaps /usr/bin/install -p 644 i-nex.png /builddir/build/BUILDROOT/i-nex-7.6.0-2.20170703git0c10102.fc28.x86_64/usr/share/pixmaps/ /usr/bin/install: cannot stat '644': No such file or directory make[1]: *** [Makefile:5: install] Error 1

diff -up I-Nex-0c10102578e7c762674eaf9460b0903d76f151db/JSON/Makefile.fix_build I-Nex-0c10102578e7c762674eaf9460b0903d76f151db/JSON/Makefile --- I-Nex-0c10102578e7c762674eaf9460b0903d76f151db/JSON/Makefile.fix_build 2017-05-24 21:16:01.000000000 +0200 +++ I-Nex-0c10102578e7c762674eaf9460b0903d76f151db/JSON/Makefile 2017-10-23 17:10:34.223531318 +0200 @@ -18,7 +18,7 @@ install-bin: install-bin-i-nex-edid

this patch will fix it, please apply it in git. install-bin-i-nex-edid: test -d $(DESTDIR)$(bindir) || mkdir $(DESTDIR)$(bindir)

diff -up I-Nex-0c10102578e7c762674eaf9460b0903d76f151db/pixmaps/Makefile.fix_build I-Nex-0c10102578e7c762674eaf9460b0903d76f151db/pixmaps/Makefile --- I-Nex-0c10102578e7c762674eaf9460b0903d76f151db/pixmaps/Makefile.fix_build 2017-05-24 21:16:01.000000000 +0200 +++ I-Nex-0c10102578e7c762674eaf9460b0903d76f151db/pixmaps/Makefile 2017-10-23 17:07:26.049011999 +0200 @@ -2,10 +2,10 @@ include ../i-nex.mk install: mkdir -p ${DESTDIR}$(PREFIX)/share/pixmaps

many thanks