diff options
author | Igor Pashev <igor.pashev@nexenta.com> | 2012-11-14 23:07:43 +0400 |
---|---|---|
committer | Igor Pashev <igor.pashev@nexenta.com> | 2012-11-14 23:07:43 +0400 |
commit | a36451f126ff8aadc9de1a456ef3e895a3cc9faa (patch) | |
tree | ca7b698a688e0a55d41a7397386d02c4ebd7baeb /rules | |
parent | af82f0d3ddce19c3fa3fc0c40972dbbabbfe9299 (diff) | |
download | cibs-a36451f126ff8aadc9de1a456ef3e895a3cc9faa.tar.gz |
Breadcrumbs
Diffstat (limited to 'rules')
-rw-r--r-- | rules/ips-manifest.mk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rules/ips-manifest.mk b/rules/ips-manifest.mk index 66463af..ea0332c 100644 --- a/rules/ips-manifest.mk +++ b/rules/ips-manifest.mk @@ -74,7 +74,8 @@ $(transdir)/arch \ manifests-x := $(wildcard *.p5m.x) manifests-generated += $(manifests-x:%.x=%) %.p5m: %.p5m.x - ./$< > $@ + echo '# This file was generated by $<' > $@ + ./$< >> $@ manifests-m4 := $(wildcard *.p5m.m4) ifneq (,$(manifests-m4)) @@ -82,7 +83,8 @@ build-depends += gnu-m4 endif manifests-generated += $(manifests-m4:%.m4=%) %.p5m: %.p5m.m4 - gm4 $< > $@ + echo '# This file was generated from $<' > $@ + gm4 $< >> $@ manifests += $(manifests-generated) generated-files += $(manifests-generated) |