Juha Heinanen wrote: > this was changed in core/plug-in/Makefile.app_module a couple of days > ago: > > mkdir -p $(cfg-prefix)/$(cfg-dir)etc ===> > mkdir -p $(DESTDIR)$(cfg-target)etc > > earlier it worked because in rules/make install > > cfg-prefix=$(CURDIR)/debian/sems > > now it won't work, because $(DESTDIR) is empty and > cfg-target=/etc/sems/.
pass PREFIX or the whole cfg-target to make. this had been a bug before. DESTDIR is supposed to be the directory where stuff is installed, but it should not be considered the install path (like fakeroot); e.g. DESTDIR=staging dir cfg-target (like bin-target, lib-target etc) is to be resolved at Makefile.defs. cfg-prefix is not to be used in lower level makefiles. Stefan > > -- juha > _______________________________________________ > Semsdev mailing list > [email protected] > http://lists.iptel.org/mailman/listinfo/semsdev -- Stefan Sayer VoIP Services [EMAIL PROTECTED] www.iptego.com iptego GmbH Am Borsigturm 40 13507 Berlin Germany Amtsgericht Charlottenburg, HRB 101010 Geschaeftsfuehrer: Alexander Hoffmann _______________________________________________ Semsdev mailing list [email protected] http://lists.iptel.org/mailman/listinfo/semsdev
