~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Monty Taylor
  • Date: 2009-05-04 18:00:18 UTC
  • mto: This revision was merged to the branch mainline in revision 1005.
  • Revision ID: mordred@inaugust.com-20090504180018-uvq4g3lj0sz0nd3e
Remove creation of datadir in make install. This really doesn't belong in the Makefile, but rather in package management.

Show diffs side-by-side

added added

removed removed

Lines of Context:
202
202
pkgplugin_LTLIBRARIES=
203
203
include config/plugin.am
204
204
 
205
 
# Create empty datadir 
206
 
install-data-local:
207
 
        $(mkinstalldirs) $(DESTDIR)$(localstatedir) 
208
 
        @if test `id -u` = 0 ; then \
209
 
                if test -n "$(GROUPADD)" && test -n "$(USERADD)"; then \
210
 
                        $(GROUPADD) $(DRIZZLED_USER) ;\
211
 
                        $(USERADD) -g $(DRIZZLED_USER) $(DRIZZLED_USER) ;\
212
 
                        chown $(DRIZZLED_USER) $(DESTDIR)$(localstatedir) ;\
213
 
                fi \
214
 
        fi
215
 
 
216
205
 
217
206
.PHONY: test \
218
207
    test-force \