diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2009-07-15 17:37:52 +0200 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2009-07-18 18:21:46 -0400 |
commit | 98a5ad6147c32e6a2e5a4f584081071acdd00b9b (patch) | |
tree | 2f6158199ff135bb96681736d43bec0e8c376b0d | |
parent | 9922c53a4df10e660a1b425629a1f4db2b4fc03f (diff) | |
download | e2fsprogs-98a5ad6147c32e6a2e5a4f584081071acdd00b9b.tar.gz |
Fix intl/ build: add E/Q/V macros, process intl/libgnuintl.h
These were found necessary to build on FreeBSD 6.4.
Signed-off-by: Matthias Andree <matthias.andree@gmx.de>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
-rwxr-xr-x | configure | 3 | ||||
-rw-r--r-- | configure.in | 3 | ||||
-rw-r--r-- | intl/Makefile.in | 16 |
3 files changed, 20 insertions, 2 deletions
@@ -16592,7 +16592,8 @@ for i in MCONFIG Makefile e2fsprogs.spec \ lib/e2p/e2p.pc lib/blkid/blkid.pc lib/ext2fs/ext2fs.pc \ misc/Makefile ext2ed/Makefile e2fsck/Makefile \ debugfs/Makefile tests/Makefile tests/progs/Makefile \ - resize/Makefile doc/Makefile intl/Makefile po/Makefile.in ; do + resize/Makefile doc/Makefile intl/Makefile \ + intl/libgnuintl.h po/Makefile.in ; do if test -d `dirname ${srcdir}/$i` ; then outlist="$outlist $i" fi diff --git a/configure.in b/configure.in index d11faecd..acbcec62 100644 --- a/configure.in +++ b/configure.in @@ -1062,7 +1062,8 @@ for i in MCONFIG Makefile e2fsprogs.spec \ lib/e2p/e2p.pc lib/blkid/blkid.pc lib/ext2fs/ext2fs.pc \ misc/Makefile ext2ed/Makefile e2fsck/Makefile \ debugfs/Makefile tests/Makefile tests/progs/Makefile \ - resize/Makefile doc/Makefile intl/Makefile po/Makefile.in ; do + resize/Makefile doc/Makefile intl/Makefile \ + intl/libgnuintl.h po/Makefile.in ; do if test -d `dirname ${srcdir}/$i` ; then outlist="$outlist $i" fi diff --git a/intl/Makefile.in b/intl/Makefile.in index 36592c1b..47f6f629 100644 --- a/intl/Makefile.in +++ b/intl/Makefile.in @@ -43,6 +43,22 @@ INSTALL_DATA = @INSTALL_DATA@ MKINSTALLDIRS = @MKINSTALLDIRS@ mkinstalldirs = $(SHELL) $(MKINSTALLDIRS) +@SET_MAKE@ + +@ifGNUmake@ V = +@ifGNUmake@ ifeq ($(strip $(V)),) +@ifGNUmake@ # E = @echo +@ifGNUmake@ # Q = @ +@ifGNUmake@ E = @E@ +@ifGNUmake@ Q = @Q@ +@ifGNUmake@ else +@ifGNUmake@ E = @\# +@ifGNUmake@ Q = +@ifGNUmake@ endif + +@ifNotGNUmake@ E = @E@ +@ifNotGNUmake@ Q = @Q@ + l = @INTL_LIBTOOL_SUFFIX_PREFIX@ AR = ar |