Re: [E-devel] [patch] winlist-ng make install

2012-05-21 Thread The Rasterman
On Tue, 1 May 2012 18:56:50 +0900 Jérôme Pinot ngc...@gmail.com said:

hmm - dont need to remove the xgettext.. just add the -I m4 to aclocal :) seems
someone already did this in svn :)

 Hi,
 
 winlist-ng make install fails with this error:
 
 Making install in po
 make[1]: Entering directory `/tmp/e_modules/winlist-ng/po'
 /bin/sh
 @MKINSTALLDIRS@ 
 /tmp/package-e_modules/usr/lib64/enlightenment/modules/winlist-ng /bin/sh:
 @MKINSTALLDIRS@: No such file or directory make[1]: *** [install-data-yes]
 Error 127 make[1]: Leaving directory `/tmp/e_modules/winlist-ng/po'
 make: *** [install-recursive] Error 1
 
 Here is a patch to fix this problem,
 
 -- 
 Jérôme Pinot
 http://ngc891.blogdns.net/


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


[E-devel] [patch] winlist-ng make install

2012-05-01 Thread Jérôme Pinot
Hi,

winlist-ng make install fails with this error:

Making install in po
make[1]: Entering directory `/tmp/e_modules/winlist-ng/po'
/bin/sh @MKINSTALLDIRS@ 
/tmp/package-e_modules/usr/lib64/enlightenment/modules/winlist-ng
/bin/sh: @MKINSTALLDIRS@: No such file or directory
make[1]: *** [install-data-yes] Error 127
make[1]: Leaving directory `/tmp/e_modules/winlist-ng/po'
make: *** [install-recursive] Error 1

Here is a patch to fix this problem,

-- 
Jérôme Pinot
http://ngc891.blogdns.net/
Index: E-MODULES-EXTRA/winlist-ng/autogen.sh
===
--- E-MODULES-EXTRA/winlist-ng/autogen.sh   (revision 70570)
+++ E-MODULES-EXTRA/winlist-ng/autogen.sh   (working copy)
@@ -6,24 +6,11 @@
 touch README
 
 echo Running autopoint... ; autopoint -f || :
-echo Running aclocal... ; aclocal $ACLOCAL_FLAGS || exit 1
+echo Running aclocal... ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
 echo Running autoheader... ; autoheader || exit 1
 echo Running autoconf... ; autoconf || exit 1
 echo Running libtoolize... ; (libtoolize --copy --automake || glibtoolize 
--automake) || exit 1
 echo Running automake... ; automake --add-missing --copy --gnu || exit 1
-echo Generating gettext ng.pot.template;\
-xgettext \
--n \
--C \
--d ng \
--p po \
---copyright-holder=Enlightenment development team \
---foreign-user \
---msgid-bugs-address=enlightenment-devel@lists.sourceforge.net \
--kD_ \
---from-code=UTF-8 \
--o ng.pot \
-`find . -name *.[ch] -print` || exit 1
 
 if [ -z $NOCONFIGURE ]; then
./configure $@


signature.asc
Description: Digital signature
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel