components/ruby/puppet/Makefile
changeset 5491 b7c228ef56e3
parent 5442 f02b645d5dcb
child 5682 94c0ca64c022
equal deleted inserted replaced
5490:9bf0bc57423a 5491:b7c228ef56e3
    52 
    52 
    53 ../hiera/build/%/.installed:
    53 ../hiera/build/%/.installed:
    54 	(cd ../hiera ; $(GMAKE) install)
    54 	(cd ../hiera ; $(GMAKE) install)
    55 
    55 
    56 
    56 
    57 # Collect puppet module manifests for inclusion of puppet modules in group depends
    57 # Collect and print puppet module manifests for cherry picking into group
    58 # declare a prereq on all manifests to update depend file as needed
    58 # dependencies as a helper for the package maintainer
    59 PUPPET_MODULE_MANIFESTS = $(wildcard $(WS_TOP)/components/ruby/puppet-modules/*-*/*.p5m)
    59 PUPPET_MODULE_MANIFESTS = $(sort $(wildcard $(WS_TOP)/components/ruby/puppet-modules/*-*/*.p5m))
    60 $(BUILD_DIR)/puppet-modules.depend: $(PUPPET_MODULE_MANIFESTS) $(BUILD_DIR)
    60 print-modules: $(PUPPET_MODULE_MANIFESTS)
    61 	$(PKGMOGRIFY) -i -O /dev/null -P $@ $(WS_TRANSFORMS)/group-dependency $(PUPPET_MODULE_MANIFESTS)
    61 	$(PKGMOGRIFY) -i -O /dev/null $(WS_TRANSFORMS)/group-dependency $(PUPPET_MODULE_MANIFESTS)
    62 build:: $(BUILD_DIR)/puppet-modules.depend
       
    63 
    62 
    64 
    63 
    65 # set the bindir to /usr/sbin
    64 # set the bindir to /usr/sbin
    66 INSTALL_RB_BINDIR_OPTION =	--bindir=$(USRSBINDIR)
    65 INSTALL_RB_BINDIR_OPTION =	--bindir=$(USRSBINDIR)
    67 
    66