From owner-svn-src-all@freebsd.org Tue Sep 8 02:02:09 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A7D869CC613; Tue, 8 Sep 2015 02:02:09 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9843A1D1C; Tue, 8 Sep 2015 02:02:09 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t88229mL008266; Tue, 8 Sep 2015 02:02:09 GMT (envelope-from delphij@FreeBSD.org) Received: (from delphij@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t882292L008265; Tue, 8 Sep 2015 02:02:09 GMT (envelope-from delphij@FreeBSD.org) Message-Id: <201509080202.t882292L008265@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: delphij set sender to delphij@FreeBSD.org using -f From: Xin LI Date: Tue, 8 Sep 2015 02:02:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r287549 - stable/10/usr.bin/at X-SVN-Group: stable-10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Sep 2015 02:02:09 -0000 Author: delphij Date: Tue Sep 8 02:02:08 2015 New Revision: 287549 URL: https://svnweb.freebsd.org/changeset/base/287549 Log: MFC r287123: Finish r89633 and completely remove the remaining of VERSION. PR: bin/202308 Submitted by: John Hein Modified: stable/10/usr.bin/at/Makefile.inc Directory Properties: stable/10/ (props changed) Modified: stable/10/usr.bin/at/Makefile.inc ============================================================================== --- stable/10/usr.bin/at/Makefile.inc Tue Sep 8 01:46:52 2015 (r287548) +++ stable/10/usr.bin/at/Makefile.inc Tue Sep 8 02:02:08 2015 (r287549) @@ -1,4 +1,5 @@ -VERSION= 2.9 +# $FreeBSD$ + LOCKFILE = .lockfile ATSPOOL_DIR=/var/at/spool ATJOB_DIR=/var/at/jobs @@ -13,7 +14,7 @@ PERM_PATH=/var/at CFLAGS += -DATJOB_DIR=\"$(ATJOB_DIR)/\" \ -DLFILE=\"$(ATJOB_DIR)/$(LOCKFILE)\" \ -DLOADAVG_MX=$(LOADAVG_MX) -DATSPOOL_DIR=\"$(ATSPOOL_DIR)\" \ - -DVERSION=\"$(VERSION)\" -DDAEMON_UID=$(DAEMON_UID) -DDAEMON_GID=$(DAEMON_GID) \ + -DDAEMON_UID=$(DAEMON_UID) -DDAEMON_GID=$(DAEMON_GID) \ -DDEFAULT_BATCH_QUEUE=\'$(DEFAULT_BATCH_QUEUE)\' \ -DDEFAULT_AT_QUEUE=\'$(DEFAULT_AT_QUEUE)\' -DPERM_PATH=\"$(PERM_PATH)/\"