[EMAIL PROTECTED] wrote:

+       cd gettext-tools
+       ./configure --prefix=$(WD) --disable-shared
+       make -C lib
+       make -C src msgfmt
+       cp -v src/msgfmt $(WD)/bin
The "cd" command alone doesn't work in Makefiles, because Make passes each line to a separate instance of bash. You have to prepend it to each line, like this:

cd gettext-tools ; ./configure --prefix=$(WD) --disable-shared
cd gettext-tools ; make -C lib

--
Alexander E. Patrakov


--
http://linuxfromscratch.org/mailman/listinfo/livecd
FAQ: http://www.linuxfromscratch.org/faq/
Unsubscribe: See the above information page

Reply via email to