head	1.2;
access;
symbols
	release_4_2:1.2
	aix_ok:1.1;
locks; strict;
comment	@# @;


1.2
date	93.12.13.23.44.03;	author marc;	state Exp;
branches;
next	1.1;

1.1
date	93.07.13.00.41.36;	author olson;	state Exp;
branches;
next	;


desc
@build the ID file used by the gid/lid tools
@


1.2
log
@exit 0 so make doesn't blow up
@
text
@#!/bin/sh
#
# $Header: /usr/local/devel/postgres/src/backend/RCS/makeID,v 1.1 1993/07/13 00:41:36 olson Exp marc $
#

if test $# -ne 1; then
    echo "usage: $0 PORTNAME"
    exit 1
fi
PORTNAME=$1
 
gfind . obj/. port/$PORTNAME \( -name obj -o -name port \) -prune -o \( -name '*.[ch]' -o -name '*.gen' \) -type f -print | mkid -S.gen=c - 2>&1 | grep -v 'No scanner for language'
exit 0
@


1.1
log
@Initial revision
@
text
@d3 1
a3 1
# $Header: /private/src/postgres/src/backend/RCS/makeID,v 1.1 1993/07/09 22:49:30 olson Exp $
d12 2
a13 1
find . obj/. port/$PORTNAME \( -name obj -o -name port \) -prune -o \( -name '*.[ch]' -o -name '*.gen' \) -type f -print | mkid -S.gen=c - 2>&1 | grep -v 'No scanner for language'
@
