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 | 138beab501a61b61b692659ce57d495273e6fbb5 (patch) | |
tree | edf2ba13c8ce8ffee3bd1e15405f6b586c65d96d | |
parent | 4957d4de9268bc45a315f6c73288f838c8392786 (diff) | |
download | pkgsrc-138beab501a61b61b692659ce57d495273e6fbb5.tar.gz |
don't use VAR+=, it doesn't work with all make(1)s.
-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 |