From 00b168f895a662adb0cecb12e8d619778f35f633 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 16 Oct 2006 20:38:43 +0000 Subject: add sysctl.conf for bigger memory settings for various arches (#184820) --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index ed11c559..931ac9cf 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,8 @@ VERSION=$(shell awk '/Version:/ { print $$2 }' initscripts.spec) CVSTAG = r$(subst .,-,$(VERSION)) CVSROOT = $(shell cat CVS/Root) +ARCH = $(shell uname -m) + mandir=/usr/share/man all: @@ -28,10 +30,8 @@ install: install -m644 crypttab.5 $(ROOT)$(mandir)/man5 install -m644 service.8 sys-unconfig.8 $(ROOT)$(mandir)/man8 install -m644 sysctl.conf $(ROOT)/etc/sysctl.conf - if uname -m | grep -q sparc ; then \ - install -m644 sysctl.conf.sparc $(ROOT)/etc/sysctl.conf ; fi - if uname -m | grep -q s390 ; then \ - install -m644 sysctl.conf.s390 $(ROOT)/etc/sysctl.conf ; fi + if [ -f sysctl.conf.$(ARCH) ]; then + install -m644 sysctl.conf.$(ARCH) $(ROOT)/etc/sysctl.conf ; fi mkdir -p $(ROOT)/etc/X11 install -m755 prefdm $(ROOT)/etc/X11/prefdm -- cgit v1.2.1