diff options
author | Chris Brandt <chris.brandt@renesas.com> | 2017-12-07 13:46:05 -0500 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-12-07 22:16:03 +0100 |
commit | 5384bd0a7656a4505fd63fa16a21ff930efab494 (patch) | |
tree | c1bdcc123f0a0e06b930cfce65f986c7b3630415 /package/axfsutils/0002-use-ldflags.patch | |
parent | 682f0673df09d960fb531048b1505fb68f237d50 (diff) | |
download | buildroot-5384bd0a7656a4505fd63fa16a21ff930efab494.tar.gz buildroot-5384bd0a7656a4505fd63fa16a21ff930efab494.zip |
axfsutils: bump version
The patches are no longer needed because they have been pushed back into
the upstream axfs repository.
Signed-off-by: Chris Brandt <chris.brandt@renesas.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/axfsutils/0002-use-ldflags.patch')
-rw-r--r-- | package/axfsutils/0002-use-ldflags.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/package/axfsutils/0002-use-ldflags.patch b/package/axfsutils/0002-use-ldflags.patch deleted file mode 100644 index 20e03a9bb5..0000000000 --- a/package/axfsutils/0002-use-ldflags.patch +++ /dev/null @@ -1,20 +0,0 @@ -Makefile: use LDFLAGS as provided by the user - -In some circumstances, the user may want to pass some LDFLAGS, like --L flags to point to the zlib location if it was not installed in a -standard location. - -Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> - -diff -durN a/mkfs.axfs-legacy/Makefile b/mkfs.axfs-legacy/Makefile ---- a/mkfs.axfs-legacy/Makefile -+++ b/mkfs.axfs-legacy/Makefile -@@ -6,7 +6,7 @@ - all: mkfs.axfs - - mkfs.axfs: $(MKFSOBJS) -- $(CC) $(CFLAGS) -o mkfs.axfs $(MKFSOBJS) -lz -+ $(CC) $(CFLAGS) $(LDFLAGS) -o mkfs.axfs $(MKFSOBJS) -lz - - clean_mkfs.axfs: - rm -rf $(MKFSOBJS) mkfs.axfs |