Changed find "-not" option to ! for FreeBSD compatibility.

This commit is contained in:
Anthony Carrico 2003-02-25 15:08:51 +00:00
parent b7ae518e7a
commit 9bc5c4e742
1 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
SHELL = /bin/sh SHELL = /bin/sh
prefix = /usr/local prefix = /tmp/usr/local
libdir = $(prefix)/lib libdir = $(prefix)/lib
docdir = $(prefix)/share/doc docdir = $(prefix)/share/doc
pkglibdir = $(libdir)/sunterlib pkglibdir = $(libdir)/sunterlib
@ -21,8 +21,8 @@ s48-packages := $(shell find s48 \
-name packages.scm) -name packages.scm)
s48-srcs := $(shell find s48 \ s48-srcs := $(shell find s48 \
-mindepth 2 \ -mindepth 2 \
-not -name interfaces.scm \ ! -name interfaces.scm \
-not -name packages.scm \ ! -name packages.scm \
-name "*.scm") -name "*.scm")
s48-docs := $(shell find s48 \ s48-docs := $(shell find s48 \
-mindepth 2 \ -mindepth 2 \
@ -36,8 +36,8 @@ scsh-packages := $(shell find scsh \
-name packages.scm) -name packages.scm)
scsh-srcs := $(shell find scsh \ scsh-srcs := $(shell find scsh \
-mindepth 2 \ -mindepth 2 \
-not -name interfaces.scm \ ! -name interfaces.scm \
-not -name packages.scm \ ! -name packages.scm \
-name "*.scm") -name "*.scm")
scsh-docs := $(shell find scsh \ scsh-docs := $(shell find scsh \
-mindepth 2 \ -mindepth 2 \