diff options
author | Rene Mayrhofer <rene@mayrhofer.eu.org> | 2009-04-09 14:46:53 +0000 |
---|---|---|
committer | Rene Mayrhofer <rene@mayrhofer.eu.org> | 2009-04-09 14:46:53 +0000 |
commit | 2aeb1a84c7f0ea38412c92dd5466a26d7fba8e87 (patch) | |
tree | 988e8a4b4b10e452a9901d6a35808e52a278d895 | |
parent | faae62c06c819ac65fb84ead5ce241a823a676c4 (diff) | |
download | vyos-strongswan-2aeb1a84c7f0ea38412c92dd5466a26d7fba8e87.tar.gz vyos-strongswan-2aeb1a84c7f0ea38412c92dd5466a26d7fba8e87.zip |
Syntax error fix?
-rwxr-xr-x | debian/rules | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/rules b/debian/rules index 99e460cd7..edaaf63b0 100755 --- a/debian/rules +++ b/debian/rules @@ -92,9 +92,9 @@ install: build-stamp # install files from debian/tmp into proper package dirs dh_install # special handling for padlock, as it is only built on i386 - ifeq ($(DEB_BUILD_ARCH_CPU),i386) +ifeq ($(DEB_BUILD_ARCH_CPU),i386) install $(CURDIR)/debian/tmp/usr/lib/ipsec/plugins/libstrongswan-padlock.so* $(CURDIR)/debian/libstrongswan/usr/lib/ipsec/plugins/ - endif +endif # and additional files not covered by upstream makefile... install --mode=0600 $(CURDIR)/debian/ipsec.secrets.proto $(CURDIR)/debian/strongswan-starter/etc/ipsec.secrets |