diff options
author | grant <grant@pkgsrc.org> | 2004-02-11 11:31:26 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-02-11 11:31:26 +0000 |
commit | fab318f6f1c76f1ffd47a7c65ede6ab310a8032b (patch) | |
tree | 2732cd1096f7003197dc22d203c00888a91b5249 /pkgtools/pkg_install | |
parent | 0dbd320ef84b61a702e682ecfb889842c5a25940 (diff) | |
download | pkgsrc-fab318f6f1c76f1ffd47a7c65ede6ab310a8032b.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/pkg_install')
-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 |