diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-07-24 16:17:25 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-07-24 16:17:25 +0000 |
commit | 517850cb56fa3581feb8f15841fe9c203c9dbf1d (patch) | |
tree | 4d456f718a10a66a425ea3ba416e781a42f48048 /gnu/usr.bin | |
parent | 3ac961d441779f5719f8fc7e2e1d2a0c9de31fa0 (diff) |
install programs using INSTALL_PROGRAM of all things, will cvsbug this, pr 188
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/cvs/src/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/cvs/src/Makefile.in b/gnu/usr.bin/cvs/src/Makefile.in index f02edf26101..3a573fa9f14 100644 --- a/gnu/usr.bin/cvs/src/Makefile.in +++ b/gnu/usr.bin/cvs/src/Makefile.in @@ -88,7 +88,7 @@ lint: install: installdirs @for prog in $(PROGS); do \ echo Installing $$prog in $(bindir); \ - $(INSTALL) $$prog $(bindir)/$$prog ; \ + $(INSTALL_PROGRAM) $$prog $(bindir)/$$prog ; \ done installdirs: |