diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-04-05 22:24:02 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-04-08 18:07:51 +0200 |
commit | 3ae6d619a458b89192029d9cbcfc0bc70669dd8c (patch) | |
tree | 9109736b93acbb5fd6a0eb5ef260879be49255ee /package/libaio/libaio-0.3.109-destdir.patch | |
parent | 633049d80064e8c156ff58e1fc776f2f9afe9163 (diff) | |
download | buildroot-novena-3ae6d619a458b89192029d9cbcfc0bc70669dd8c.tar.gz buildroot-novena-3ae6d619a458b89192029d9cbcfc0bc70669dd8c.zip |
libaio: convert to the GENTARGETS infrastructure
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libaio/libaio-0.3.109-destdir.patch')
-rw-r--r-- | package/libaio/libaio-0.3.109-destdir.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/package/libaio/libaio-0.3.109-destdir.patch b/package/libaio/libaio-0.3.109-destdir.patch new file mode 100644 index 000000000..583a2afa8 --- /dev/null +++ b/package/libaio/libaio-0.3.109-destdir.patch @@ -0,0 +1,24 @@ +Patch borrowed from OpenEmbedded, available at +recipes/libaio/libaio-0.3.106/destdir.patch in their source tree. + +It just adds support for the traditional DESTDIR variable to install +the library in a different sysroot than the normal /. + +Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> +--- + Makefile | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +Index: libaio-0.3.109/Makefile +=================================================================== +--- libaio-0.3.109.orig/Makefile ++++ libaio-0.3.109/Makefile +@@ -23,7 +23,7 @@ + @$(MAKE) -C src + + install: +- @$(MAKE) -C src install prefix=$(prefix) includedir=$(includedir) libdir=$(libdir) ++ @$(MAKE) -C src install prefix=$(DESTDIR)$(prefix) includedir=$(DESTDIR)$(includedir) libdir=$(DESTDIR)$(libdir) + + check: + @$(MAKE) -C harness check |