diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-02-06 18:17:08 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-02-06 18:17:08 +0000 |
commit | 3c28ac08814b8640ccf1584b9c24e7adfed65cee (patch) | |
tree | 94d1f0ad351d1c3f81b24d741eddda648261d959 /package/hal | |
parent | 821eb62d994cf0dc53d278bca63d6c66e038a065 (diff) | |
download | buildroot-novena-3c28ac08814b8640ccf1584b9c24e7adfed65cee.tar.gz buildroot-novena-3c28ac08814b8640ccf1584b9c24e7adfed65cee.zip |
Fix building of gettext/libintl when using an external toolchain.
Diffstat (limited to 'package/hal')
-rw-r--r-- | package/hal/hal06-libintl.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/package/hal/hal06-libintl.patch b/package/hal/hal06-libintl.patch new file mode 100644 index 000000000..d38124e5c --- /dev/null +++ b/package/hal/hal06-libintl.patch @@ -0,0 +1,24 @@ +diff -ur hal-0.5.8/hald/Makefile.in hal-0.5.8-patched/hald/Makefile.in +--- hal-0.5.8/hald/Makefile.in 2006-09-11 18:25:30.000000000 -0500 ++++ hal-0.5.8-patched/hald/Makefile.in 2007-01-17 08:54:04.000000000 -0600 +@@ -336,7 +336,7 @@ + osspec.h \ + property.h property.c + +-hald_LDADD = @GLIB_LIBS@ @DBUS_LIBS@ -lm @EXPAT_LIB@ $(top_builddir)/hald/$(HALD_BACKEND)/libhald_$(HALD_BACKEND).la ++hald_LDADD = @GLIB_LIBS@ @DBUS_LIBS@ -lm @EXPAT_LIB@ @INTLLIBS@ $(top_builddir)/hald/$(HALD_BACKEND)/libhald_$(HALD_BACKEND).la + + #### Init scripts fun + SCRIPT_IN_FILES = haldaemon.in +diff -ur hal-0.5.8/hald-runner/Makefile.in hal-0.5.8-patched/hald-runner/Makefile.in +--- hal-0.5.8/hald-runner/Makefile.in 2006-09-11 18:25:30.000000000 -0500 ++++ hal-0.5.8-patched/hald-runner/Makefile.in 2007-01-17 08:54:18.000000000 -0600 +@@ -303,7 +303,7 @@ + @DBUS_CFLAGS@ @GLIB_CFLAGS@ + + hald_runner_SOURCES = main.c runner.c runner.h utils.h utils.c +-hald_runner_LDADD = @GLIB_LIBS@ @DBUS_LIBS@ ++hald_runner_LDADD = @GLIB_LIBS@ @DBUS_LIBS@ @INTLLIBS@ + all: all-am + + .SUFFIXES: |