diff options
author | jkh <jkh@FreeBSD.org> | 1995-04-21 10:18:33 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-04-21 10:18:33 +0000 |
commit | fecc1587af6de020fb1746a584c095b8bffd7dc0 (patch) | |
tree | ac175bce225be9215e1a5bc255bd1544ccc84028 /gnu | |
parent | 3bf1d99e22d77d8dc7fa31ed1961265cdd05a068 (diff) | |
download | FreeBSD-src-fecc1587af6de020fb1746a584c095b8bffd7dc0.zip FreeBSD-src-fecc1587af6de020fb1746a584c095b8bffd7dc0.tar.gz |
Hastily back out my previous change to install ui_objects.h; upon further
examination, I'm not entirely sure this was meant to be public. It's not
idempotent or anything. I'll make pkg_manage deal with it another way
until it's been confirmed one way or the other by Marc.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/lib/libdialog/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnu/lib/libdialog/Makefile b/gnu/lib/libdialog/Makefile index 5677a14..ce37a65 100644 --- a/gnu/lib/libdialog/Makefile +++ b/gnu/lib/libdialog/Makefile @@ -1,5 +1,5 @@ # Makefile for libdialog -# $Id: Makefile,v 1.8 1995/04/20 17:39:25 ache Exp $ +# $Id: Makefile,v 1.9 1995/04/21 10:15:31 jkh Exp $ LIB= dialog SRCS= kernel.c rc.c checklist.c inputbox.c menubox.c msgbox.c \ @@ -15,9 +15,5 @@ beforeinstall: -cd ${.CURDIR}; cmp -s dialog.h ${DESTDIR}/usr/include/dialog.h || \ install -c -o ${BINOWN} -g ${BINGRP} -m 444 dialog.h \ ${DESTDIR}/usr/include - -cd ${.CURDIR}; cmp -s ui_objects.h \ - ${DESTDIR}/usr/include/ui_objects.h || \ - install -c -o ${BINOWN} -g ${BINGRP} -m 444 ui_objects.h \ - ${DESTDIR}/usr/include .include <bsd.lib.mk> |