diff options
author | grant <grant@pkgsrc.org> | 2004-03-11 13:33:57 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-03-11 13:33:57 +0000 |
commit | 8dcc56addb16a69e2b44c73bed687d3b711142cc (patch) | |
tree | a04ee33e5cf77102823a2df9c52bdabf3a912df3 /pkgtools | |
parent | 361bc94452dad5d41d99329e31640f494811406f (diff) | |
download | pkgsrc-8dcc56addb16a69e2b44c73bed687d3b711142cc.tar.gz |
catch up with bootstrap-pkgsrc changes.
Just a comment doesn't seem to suffice in all cases. For no-op commands,
use an explicit "true" invocation to avoid problems. (A future merge of
current bmake may fix this issue.)
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/files/lib/Makefile.in | 4 | ||||
-rw-r--r-- | pkgtools/pkg_install/files/view/Makefile.in | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgtools/pkg_install/files/lib/Makefile.in b/pkgtools/pkg_install/files/lib/Makefile.in index ed57e3596e7..8b9f84d93ee 100644 --- a/pkgtools/pkg_install/files/lib/Makefile.in +++ b/pkgtools/pkg_install/files/lib/Makefile.in @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.in,v 1.6 2003/09/23 07:44:51 grant Exp $ +# $NetBSD: Makefile.in,v 1.7 2004/03/11 13:33:57 grant Exp $ srcdir= @srcdir@ @@ -35,4 +35,4 @@ clean: rm -f $(OBJS) $(LIB) install: - @# do nothing + @true # do nothing diff --git a/pkgtools/pkg_install/files/view/Makefile.in b/pkgtools/pkg_install/files/view/Makefile.in index 54da9c666ab..4d5a5cbfdca 100644 --- a/pkgtools/pkg_install/files/view/Makefile.in +++ b/pkgtools/pkg_install/files/view/Makefile.in @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.in,v 1.2 2003/09/19 02:11:22 grant Exp $ +# $NetBSD: Makefile.in,v 1.3 2004/03/11 13:33:57 grant Exp $ prefix= @prefix@ exec_prefix= @exec_prefix@ @@ -15,10 +15,10 @@ SCRIPTS= linkfarm pkg_view .PHONY: all clean install all: - @# do nothing + @true # do nothing clean: - @# do nothing + @true # do nothing install: $(INSTALL) -m 755 -d $(sbindir) |