diff options
author | william <william@25tandclement.com> | 2014-03-27 22:57:09 -0700 |
---|---|---|
committer | william <william@25tandclement.com> | 2014-03-27 22:57:09 -0700 |
commit | ea88fea73260424a1724a6ef5ecb0aa5dce68ba7 (patch) | |
tree | 62abe950e44cf911130426a4b7931e4e6a07f70b /GNUmakefile | |
parent | 8e755dcc092f0f46e7ff847d9672bfa7dde834c5 (diff) | |
download | luaossl-ea88fea73260424a1724a6ef5ecb0aa5dce68ba7.tar.gz luaossl-ea88fea73260424a1724a6ef5ecb0aa5dce68ba7.tar.bz2 luaossl-ea88fea73260424a1724a6ef5ecb0aa5dce68ba7.zip |
rename pubkey.lua to pkey.lua and create symlink on install for backward compatability
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile index 9c1fece..113ef06 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -32,6 +32,8 @@ RANLIB ?= ranlib M4 ?= m4 RM ?= rm CP ?= cp +LN ?= ln +LN_S ?= $(LN) -s RMDIR ?= rmdir MKDIR ?= mkdir CHMOD ?= chmod @@ -62,6 +64,8 @@ $(d)/config: printf 'M4 ?= $(value M4)'"\n" >> $(@D)/.config printf 'RM ?= $(value RM)'"\n" >> $(@D)/.config printf 'CP ?= $(value CP)'"\n" >> $(@D)/.config + printf 'LN ?= $(value LN)'"\n" >> $(@D)/.config + printf 'LN_S ?= $(value LN_S)'"\n" >> $(@D)/.config printf 'RMDIR ?= $(value RMDIR)'"\n" >> $(@D)/.config printf 'MKDIR ?= $(value MKDIR)'"\n" >> $(@D)/.config printf 'CHMOD ?= $(value CHMOD)'"\n" >> $(@D)/.config |