diff options
author | Saul Wold <Saul.Wold@intel.com> | 2010-09-02 11:52:24 -0700 |
---|---|---|
committer | Saul Wold <Saul.Wold@intel.com> | 2010-09-02 11:59:08 -0700 |
commit | 558ef570975f6f83a1878a41ecd984ef07a1a443 (patch) | |
tree | b10f2d71f221383ae1675f782ffb35c87cb03642 /meta/recipes-extended/rpcbind/files | |
parent | a6c83e0620e2952ddc0ed4a97adb9029cb8e6e21 (diff) | |
download | openembedded-core-558ef570975f6f83a1878a41ecd984ef07a1a443.tar.gz openembedded-core-558ef570975f6f83a1878a41ecd984ef07a1a443.tar.bz2 openembedded-core-558ef570975f6f83a1878a41ecd984ef07a1a443.tar.xz openembedded-core-558ef570975f6f83a1878a41ecd984ef07a1a443.zip |
rpcbind: add patch to fix host include path
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Diffstat (limited to 'meta/recipes-extended/rpcbind/files')
-rw-r--r-- | meta/recipes-extended/rpcbind/files/fix_host_path.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meta/recipes-extended/rpcbind/files/fix_host_path.patch b/meta/recipes-extended/rpcbind/files/fix_host_path.patch new file mode 100644 index 000000000..1b12d83d6 --- /dev/null +++ b/meta/recipes-extended/rpcbind/files/fix_host_path.patch @@ -0,0 +1,14 @@ +This fixes the hardcoded HOST path + +Signed-off-by: Saul Wold <saul.wold@intel.com> + +--- rpcbind-0.2.0/src/Makefile.am 2010-09-02 11:47:16.725763886 -0700 ++++ rpcbind-0.2.0_fixed/src/Makefile.am 2010-09-02 11:47:36.077763138 -0700 +@@ -29,6 +29,6 @@ + + rpcbind_LDFLAGS = -lpthread -ltirpc + rpcbind_LDADD = $(LIB_TIRPC) +-AM_CPPFLAGS = -I/usr/include/tirpc -DCHECK_LOCAL -DPORTMAP \ ++AM_CPPFLAGS = -I=/usr/include/tirpc -DCHECK_LOCAL -DPORTMAP \ + -DFACILITY=LOG_MAIL -DSEVERITY=LOG_INFO + |