diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2015-07-14 12:53:42 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-14 13:04:12 +0200 |
commit | 931ee9c1ae2f4e3507d16e394c34c719803c294f (patch) | |
tree | b42404c446c84d0335d9e6caaadae4457551f1ac | |
parent | ec9e34c9bb7c60e6fe71529553a87215501ea63a (diff) |
package/openswan: fix parallel build
Fixes:
http://autobuild.buildroot.org/results/2ec/2ecb098b01bd44d75182b15f98c1fd2a8c927438/
http://autobuild.buildroot.org/results/18f/18f0166f3fa831f321818e286d9c2e9037f8c8d0/
...
Cc: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/openswan/openswan.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/openswan/openswan.mk b/package/openswan/openswan.mk index 6c6a8a776..b7689c14a 100644 --- a/package/openswan/openswan.mk +++ b/package/openswan/openswan.mk @@ -29,12 +29,12 @@ endif endif define OPENSWAN_BUILD_CMDS - $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \ + $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) \ $(OPENSWAN_MAKE_OPTS) programs endef define OPENSWAN_INSTALL_TARGET_CMDS - $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \ + $(TARGET_MAKE_ENV) $(MAKE1) -C $(@D) \ $(OPENSWAN_MAKE_OPTS) DESTDIR=$(TARGET_DIR) install endef |