diff options
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -3,6 +3,7 @@ NAME = drakconf SUBDIRS = po pixmaps #data localedir = $(DESTDIR)/usr/share/locale mcc_dir = $(DESTDIR)/usr/share/mcc +PERL_VENDORLIB=$(DESTDIR)/$(shell perl -V:installvendorlib | perl -pi -e "s/.*=//; s/[;']//g") override CFLAGS += -DPACKAGE=\"$(NAME)\" -DLOCALEDIR=\"$(localedir)\" @@ -31,6 +32,8 @@ install: all install -m755 drakconsole $(DESTDIR)/usr/sbin/ install -m755 mdkwebadmin.pl $(DESTDIR)/usr/bin/ for d in $(SUBDIRS); do ( cd $$d ; make $@ ) ; done + mkdir -p $(PERL_VENDORLIB)/MDV/ + install -m 644 lib/MDV/*.pm $(PERL_VENDORLIB)/MDV/ dis: clean rm -rf $(NAME)-$(VERSION) ../$(NAME)-$(VERSION).tar* |