diff options
author | Maxime Hadjinlian <maxime.hadjinlian@gmail.com> | 2014-10-26 19:45:20 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-29 21:36:18 +0100 |
commit | f4e945479bd9eba04d8851a268f9ebe2f7946cd3 (patch) | |
tree | 32435fee9a72085212e14029cc39ce595911f6e7 /package/libenca/libenca-001-fix-installation-error.patch | |
parent | 5437aeb90d615890f6ca3007f4a059d506b93789 (diff) | |
download | buildroot-f4e945479bd9eba04d8851a268f9ebe2f7946cd3.tar.gz buildroot-f4e945479bd9eba04d8851a268f9ebe2f7946cd3.zip |
libenca: bump version
Remove all the patches as they were accepted upstream.
[Thomas: drop AUTORECONF = YES, as suggested by Bernd.]
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Reviewed-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libenca/libenca-001-fix-installation-error.patch')
-rw-r--r-- | package/libenca/libenca-001-fix-installation-error.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/package/libenca/libenca-001-fix-installation-error.patch b/package/libenca/libenca-001-fix-installation-error.patch deleted file mode 100644 index fc27841e41..0000000000 --- a/package/libenca/libenca-001-fix-installation-error.patch +++ /dev/null @@ -1,44 +0,0 @@ -From 1ca09a1a8f3dd07e2805855a1f1a67a54e8d8adb Mon Sep 17 00:00:00 2001 -From: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> -Date: Wed, 15 Jan 2014 00:20:08 +0100 -Subject: [PATCH 2/3] Fix installation error - -ln will complain that the link already exists and will error. -Adding the -f flag, force ln to recreate the link without failing the -build. - -Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> ---- - Makefile.am | 2 +- - src/Makefile.am | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/Makefile.am b/Makefile.am -index b5b50be..ddf1d5f 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -54,7 +54,7 @@ install-data-hook: - cd $(DESTDIR)$(man1dir); \ - inst1=`echo enca | sed '$(transform)'`.1; \ - inst2=`echo enconv | sed '$(transform)'`.1; \ -- $(LN_S) $$inst1 $$inst2 -+ $(LN_S) -f $$inst1 $$inst2 - - uninstall-hook: - inst=`echo enconv | sed '$(transform)'`.1; \ -diff --git a/src/Makefile.am b/src/Makefile.am -index 2f01a12..3885137 100644 ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -47,7 +47,7 @@ install-exec-hook: - cd $(DESTDIR)$(bindir); \ - inst1=`echo enca | sed '$(transform)'`; \ - inst2=`echo enconv | sed '$(transform)'`; \ -- $(LN_S) $$inst1$(EXEEXT) $$inst2$(EXEEXT) -+ $(LN_S) -f $$inst1$(EXEEXT) $$inst2$(EXEEXT) - - uninstall-hook: - inst=`echo enconv | sed '$(transform)'`; \ --- -1.8.5.2 - |