diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-09-16 11:49:55 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-09-16 15:53:54 +0200 |
commit | f250324a28e839b5d2416f7b9aa2ba0457db3522 (patch) | |
tree | 4ff1a7cdcbceb99907709904683069453ce21428 | |
parent | 7c1f276974505381856be04618e8622b7caf0041 (diff) | |
download | buildroot-f250324a28e839b5d2416f7b9aa2ba0457db3522.tar.gz buildroot-f250324a28e839b5d2416f7b9aa2ba0457db3522.zip |
botan: fix static build
Don't pass crs in AR as it is now done by botan, see:
https://github.com/randombit/botan/commit/a9e4eede3942748234d705cc616ecc106e3767a6
Fixes:
- http://autobuild.buildroot.org/results/5c15fe739cb1b6079dacf234699ee048924b74fb
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/botan/botan.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/botan/botan.mk b/package/botan/botan.mk index 4788617d4a..59aa1f0803 100644 --- a/package/botan/botan.mk +++ b/package/botan/botan.mk @@ -87,7 +87,7 @@ define BOTAN_CONFIGURE_CMDS endef define BOTAN_BUILD_CMDS - $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) AR="$(TARGET_AR) crs" + $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) AR="$(TARGET_AR)" endef define BOTAN_INSTALL_STAGING_CMDS |