diff options
author | Martin Willi <martin@revosec.ch> | 2012-07-19 08:44:55 +0200 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2012-07-19 13:55:02 +0200 |
commit | 328447acd5739e2ab2663bf8cbf6e039037f1ce7 (patch) | |
tree | fb2afcf26f1e3b31b1c4c1831f8fb5a567a1a5d2 /packages | |
parent | 5084c13f6d36c09f9ce57d89a8a567f9f219dfdb (diff) | |
download | strongswan-328447acd5739e2ab2663bf8cbf6e039037f1ce7.tar.bz2 strongswan-328447acd5739e2ab2663bf8cbf6e039037f1ce7.tar.xz |
Pass CC/CFLAGS to ./configure, not to make, adding -include config.h
Diffstat (limited to 'packages')
-rwxr-xr-x | packages/strongswan/debian/rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/strongswan/debian/rules b/packages/strongswan/debian/rules index ad0e8fadf..9ad64dfd8 100755 --- a/packages/strongswan/debian/rules +++ b/packages/strongswan/debian/rules @@ -28,8 +28,8 @@ endif build: dh_testdir - ./configure $(CONFIGURE_ARGS) - $(MAKE) CC="$(CC)" CFLAGS="$(CFLAGS)" + ./configure $(CONFIGURE_ARGS) CC="$(CC)" CFLAGS="$(CFLAGS)" + $(MAKE) touch build clean: |