From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 736191381FE for ; Tue, 7 Aug 2012 17:30:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5EF0E08B5; Tue, 7 Aug 2012 17:29:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 86713E08B5 for ; Tue, 7 Aug 2012 17:29:54 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DFD781B4026 for ; Tue, 7 Aug 2012 17:29:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 8FCE2E543F for ; Tue, 7 Aug 2012 17:29:52 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1344360489.1044e681eb5d27738ef6b298df6736989ee297ec.WilliamH@gentoo> Subject: [gentoo-commits] proj/udev-gentoo-scripts:master commit in: / X-VCS-Repository: proj/udev-gentoo-scripts X-VCS-Files: Makefile X-VCS-Directories: / X-VCS-Committer: WilliamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 1044e681eb5d27738ef6b298df6736989ee297ec X-VCS-Branch: master Date: Tue, 7 Aug 2012 17:29:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 3a9144f9-25fe-4627-a97a-1554ec2fa66f X-Archives-Hash: 0e7c37f487cb3121845f5fc40f19f0d1 commit: 1044e681eb5d27738ef6b298df6736989ee297ec Author: William Hubbs gentoo org> AuthorDate: Tue Aug 7 17:28:09 2012 +0000 Commit: William Hubbs gentoo org> CommitDate: Tue Aug 7 17:28:09 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/udev-gentoo-scripts.git;a=commit;h=1044e681 clean up makefile --- Makefile | 17 ++++++++--------- 1 files changed, 8 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 4922ac7..152173c 100644 --- a/Makefile +++ b/Makefile @@ -12,17 +12,16 @@ HELPERS = \ helpers/net.sh all: - @echo "Run make install DESTDIR=" install: - @install -d $(DESTDIR)$(LIBUDEV) - @install -m 0755 $(HELPERS) $(DESTDIR)$(LIBUDEV) - @install -d $(DESTDIR)$(RULESDIR) - @install -m 0644 rules.d/??-*.rules $(DESTDIR)$(RULESDIR) - @install -d $(DESTDIR)$(CONFD) - @install -m 0644 conf.d/* $(DESTDIR)$(CONFD) - @install -d $(DESTDIR)$(INITD) - @install -m 0755 init.d/* $(DESTDIR)$(INITD) + install -d $(DESTDIR)$(LIBUDEV) + install -m 0755 $(HELPERS) $(DESTDIR)$(LIBUDEV) + install -d $(DESTDIR)$(RULESDIR) + install -m 0644 rules.d/??-*.rules $(DESTDIR)$(RULESDIR) + install -d $(DESTDIR)$(CONFD) + install -m 0644 conf.d/* $(DESTDIR)$(CONFD) + install -d $(DESTDIR)$(INITD) + install -m 0755 init.d/* $(DESTDIR)$(INITD) check-git-repository: git diff --quiet || { echo 'STOP, you have uncommitted changes in the working directory' ; false ; }