Diff for /embedaddon/strongswan/testing/scripts/recipes/009_xfrm-proxy.mk between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2020/06/03 09:46:49 version 1.1.1.2, 2021/03/17 00:20:15
Line 1 Line 1
 #!/usr/bin/make  #!/usr/bin/make
   
 PKG = xfrm-proxy  PKG = xfrm-proxy
SRC = http://git.codelabs.ch/git/$(PKG).gitSRC = https://git.codelabs.ch/git/$(PKG).git
 REV = v0.1  REV = v0.1
   
 export ADA_PROJECT_PATH=/usr/local/ada/lib/gnat  export ADA_PROJECT_PATH=/usr/local/ada/lib/gnat
Line 14  all: install Line 14  all: install
   
 .$(PKG)-checkout-$(REV): .$(PKG)-cloned  .$(PKG)-checkout-$(REV): .$(PKG)-cloned
         cd $(PKG) && git fetch && git checkout $(REV)          cd $(PKG) && git fetch && git checkout $(REV)
        @touch $@        @rm -f .$(PKG)-checkout-* && touch $@
   
 .$(PKG)-built-$(REV): .$(PKG)-checkout-$(REV)  .$(PKG)-built-$(REV): .$(PKG)-checkout-$(REV)
         cd $(PKG) && make          cd $(PKG) && make
        @touch $@        @rm -f .$(PKG)-built-* && touch $@
   
 install: .$(PKG)-built-$(REV)  install: .$(PKG)-built-$(REV)
         cd $(PKG) && make install          cd $(PKG) && make install

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>