diff options
author | Anders Svensson <[email protected]> | 2018-06-09 22:54:09 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2018-06-11 17:31:07 +0200 |
commit | 551c1c2c6937ab2dbc1b3e77382c64e74774d3e6 (patch) | |
tree | 1cfcdfe38b159abeeee58b065c906e67931fac23 /lib/diameter/src/Makefile | |
parent | e753d7157b7723dd3eb0e7000e4bb55e7f6e1c71 (diff) | |
download | otp-551c1c2c6937ab2dbc1b3e77382c64e74774d3e6.tar.gz otp-551c1c2c6937ab2dbc1b3e77382c64e74774d3e6.tar.bz2 otp-551c1c2c6937ab2dbc1b3e77382c64e74774d3e6.zip |
Simplify app-file generation
Don't bother generating applications/runtime_dependencies: what's lost
in duplication is gained in clarity.
SSL in runtime_applications but not applications in questionable, but
it's been this way for a long time with no apparent ill effects or
protests.
Diffstat (limited to 'lib/diameter/src/Makefile')
-rw-r--r-- | lib/diameter/src/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/diameter/src/Makefile b/lib/diameter/src/Makefile index 3af856f63e..f78a163591 100644 --- a/lib/diameter/src/Makefile +++ b/lib/diameter/src/Makefile @@ -149,7 +149,7 @@ gen/$(DICT_YRL).erl: compiler/$(DICT_YRL).yrl $(ERLC) -Werror -o $(@D) $< # Generate the app file. -$(APP_TARGET): $(APP_SRC) ../vsn.mk modules.mk app.sed +$(APP_TARGET): $(APP_SRC) ../vsn.mk modules.mk $(gen_verbose) \ M=`echo $(notdir $(APP_MODULES)) | tr ' ' ,`; \ C=`echo $(COMPILER_MODULES) | tr ' ' ,`; \ @@ -160,8 +160,7 @@ $(APP_TARGET): $(APP_SRC) ../vsn.mk modules.mk app.sed -e "s;%COMPILER%;$$C;" \ -e "s;%INFO%;$$I;" \ -e "s;%REGISTERED%;$$R;" \ - $< \ - | sed -f app.sed > $@ + $< > $@ $(APPUP_TARGET): $(APPUP_SRC) ../vsn.mk $(vsn_verbose) \ |