diff options
author | grant <grant@pkgsrc.org> | 2003-09-15 05:33:41 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2003-09-15 05:33:41 +0000 |
commit | e564a5265bf589c8d2a1a32aed9b18b8e4bd34fc (patch) | |
tree | edf2ba13c8ce8ffee3bd1e15405f6b586c65d96d /archivers/pax | |
parent | 8faf2be4d933745100a81c1b5aa4d75c1e895f60 (diff) | |
download | pkgsrc-e564a5265bf589c8d2a1a32aed9b18b8e4bd34fc.tar.gz |
don't use VAR+=, it doesn't work with all make(1)s.
Diffstat (limited to 'archivers/pax')
-rw-r--r-- | archivers/pax/files/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archivers/pax/files/Makefile.in b/archivers/pax/files/Makefile.in index 6ee2c45314c..a02620d56e4 100644 --- a/archivers/pax/files/Makefile.in +++ b/archivers/pax/files/Makefile.in @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.in,v 1.6 2003/09/05 18:40:48 jlam Exp $ +# $NetBSD: Makefile.in,v 1.7 2003/09/15 05:33:41 grant Exp $ srcdir= @srcdir@ @@ -24,8 +24,8 @@ PROG= pax SRCS= ar_io.c ar_subs.c buf_subs.c cpio.c file_subs.c ftree.c \ gen_subs.c getoldopt.c options.c pat_rep.c pax.c sel_subs.c tables.c \ - tar.c tty_subs.c -SRCS+= getid.c spec.c misc.c stat_flags.c pack_dev.c + tar.c tty_subs.c \ + getid.c spec.c misc.c stat_flags.c pack_dev.c OBJS= $(SRCS:.c=.o) .PHONY: all clean install |