diff options
| author | Martin Jansa <martin.jansa@gmail.com> | 2023-05-24 09:52:34 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-05-24 07:23:54 -0700 |
| commit | 26397c2ea3fe904cc99cd767c9e2b1c5b3840321 (patch) | |
| tree | e501b03be6d0e8ce787199ae270cf9fd3ab09454 /meta-multimedia | |
| parent | d369384399b912287c1a14db6cb0b0be85009154 (diff) | |
| download | meta-openembedded-26397c2ea3fe904cc99cd767c9e2b1c5b3840321.tar.gz | |
libsquish: remove unused 0001-makefile-Add-LIBDIR.patch
* it was added to meta-multimedia, but not to SRC_URI in:
https://git.openembedded.org/meta-openembedded/commit/?id=1c23fd7f8b58636983fd0b233c2043e34d3bc3b3
* and later diferent patch was added to the layer as well as SRC_URI in:
https://git.openembedded.org/meta-openembedded/commit/?id=8df60dc8d69ffa506fd923f8db91a2a8aa33343f
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-multimedia')
| -rw-r--r-- | meta-multimedia/recipes-multimedia/libsquish/libsquish/0001-makefile-Add-LIBDIR.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/meta-multimedia/recipes-multimedia/libsquish/libsquish/0001-makefile-Add-LIBDIR.patch b/meta-multimedia/recipes-multimedia/libsquish/libsquish/0001-makefile-Add-LIBDIR.patch deleted file mode 100644 index c6eb7ac576..0000000000 --- a/meta-multimedia/recipes-multimedia/libsquish/libsquish/0001-makefile-Add-LIBDIR.patch +++ /dev/null | |||
| @@ -1,36 +0,0 @@ | |||
| 1 | From 4fd08c0446ca02917014b63f9080c4205958a130 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Sun, 20 Mar 2022 01:15:32 -0700 | ||
| 4 | Subject: [PATCH] makefile: Add LIBDIR | ||
| 5 | |||
| 6 | Avoid hardcoding /lib | ||
| 7 | |||
| 8 | Upstream-Status: Pending | ||
| 9 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 10 | --- | ||
| 11 | Makefile | 6 +++--- | ||
| 12 | 1 file changed, 3 insertions(+), 3 deletions(-) | ||
| 13 | |||
| 14 | diff --git a/Makefile b/Makefile | ||
| 15 | index 1c01f89..2b1df5b 100644 | ||
| 16 | --- a/Makefile | ||
| 17 | +++ b/Makefile | ||
| 18 | @@ -11,12 +11,12 @@ all : $(LIB) squish.pc | ||
| 19 | |||
| 20 | install : $(LIB) squish.pc | ||
| 21 | install squish.h $(INSTALL_DIR)/include | ||
| 22 | - install libsquish.a $(INSTALL_DIR)/lib | ||
| 23 | - install squish.pc $(INSTALL_DIR)/lib/pkgconfig | ||
| 24 | + install libsquish.a $(INSTALL_DIR)/$(LIBDIR) | ||
| 25 | + install squish.pc $(INSTALL_DIR)/$(LIBDIR)/pkgconfig | ||
| 26 | |||
| 27 | uninstall: | ||
| 28 | $(RM) $(INSTALL_DIR)/include/squish.h | ||
| 29 | - $(RM) $(INSTALL_DIR)/lib/libsquish.a | ||
| 30 | + $(RM) $(INSTALL_DIR)/$(LIBDIR)/libsquish.a | ||
| 31 | |||
| 32 | $(LIB) : $(OBJ) | ||
| 33 | $(AR) cr $@ $? | ||
| 34 | -- | ||
| 35 | 2.35.1 | ||
| 36 | |||
