diff options
author | grant <grant> | 2004-02-11 11:31:26 +0000 |
---|---|---|
committer | grant <grant> | 2004-02-11 11:31:26 +0000 |
commit | 3448c220242f096c6d77b25e8ea8886cc9e54ef1 (patch) | |
tree | 2732cd1096f7003197dc22d203c00888a91b5249 /pkgtools | |
parent | 86cab7ab57c4120a798172a78b48aabde864f2cb (diff) | |
download | pkgsrc-3448c220242f096c6d77b25e8ea8886cc9e54ef1.tar.gz |
just use ${OPSYS} and ${MACHINE_ARCH} from the environment. this means
we can set it in the environment if bootstrapping or have pkgsrc do it
for us.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/files/add/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/pkg_install/files/add/Makefile.in b/pkgtools/pkg_install/files/add/Makefile.in index 8bdb0f485c4..b19d0947639 100644 --- a/pkgtools/pkg_install/files/add/Makefile.in +++ b/pkgtools/pkg_install/files/add/Makefile.in @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.in,v 1.10 2003/10/06 10:12:42 grant Exp $ +# $NetBSD: Makefile.in,v 1.11 2004/02/11 11:31:26 grant Exp $ srcdir= @srcdir@ @@ -14,7 +14,7 @@ CC= @CC@ CCLD= $(CC) LIBS= -linstall @LIBS@ CPPFLAGS= @CPPFLAGS@ -I. -I$(srcdir) -I../lib -DEFS= @DEFS@ -DBINDIR=\"$(sbindir)\" -DMTREE_CMD=\"@mtree@\" -DTAR_CMD=\"@tar@\" +DEFS= @DEFS@ -DOPSYS_NAME=\"$(OPSYS)\" -DMACHINE_ARCH=\"$(MACHINE_ARCH)\" -DBINDIR=\"$(sbindir)\" -DMTREE_CMD=\"@mtree@\" -DTAR_CMD=\"@tar@\" CFLAGS= @CFLAGS@ LDFLAGS= @LDFLAGS@ -L../lib |