projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix make error with /usr/share/common-licenses/GPL-2
[openwrt.git]
/
openwrt
/
package
/
openvpn
/
Makefile
diff --git
a/openwrt/package/openvpn/Makefile
b/openwrt/package/openvpn/Makefile
index
e5e1275
..
5ae1a31
100644
(file)
--- a/
openwrt/package/openvpn/Makefile
+++ b/
openwrt/package/openvpn/Makefile
@@
-38,6
+38,12
@@
endif
ifneq ($(BR2_COMPILE_OPENVPN_WITH_HTTP),y)
DISABLE_HTTP:=--disable-http
endif
ifneq ($(BR2_COMPILE_OPENVPN_WITH_HTTP),y)
DISABLE_HTTP:=--disable-http
endif
+ifeq ($(BR2_COMPILE_OPENVPN_WITH_PASSWORD_SAVE),y)
+ENABLE_PASSWORD_SAVE:=--enable-password-save
+endif
+ifeq ($(BR2_COMPILE_OPENVPN_WITH_SMALL),y)
+ENABLE_SMALL:=--enable-small
+endif
$(PKG_BUILD_DIR)/.configured:
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
$(PKG_BUILD_DIR)/.configured:
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
@@
-76,6
+82,8
@@
$(PKG_BUILD_DIR)/.configured:
$(DISABLE_OPENSSL) \
$(DISABLE_SERVER) \
$(DISABLE_HTTP) \
$(DISABLE_OPENSSL) \
$(DISABLE_SERVER) \
$(DISABLE_HTTP) \
+ $(ENABLE_PASSWORD_SAVE) \
+ $(ENABLE_SMALL) \
);
touch $(PKG_BUILD_DIR)/.configured
);
touch $(PKG_BUILD_DIR)/.configured
This page took
0.020545 seconds
and
4
git commands to generate.