diff options
author | agc <agc@pkgsrc.org> | 2001-10-25 21:04:32 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-10-25 21:04:32 +0000 |
commit | 841fee062e0ec1eaa311719759869642a27bba8b (patch) | |
tree | 509ffadb244ba88b6bc889426ce76121425f96f2 /emulators | |
parent | 4a638f0adf2e42811edb66f65442d35c630c84de (diff) | |
download | pkgsrc-841fee062e0ec1eaa311719759869642a27bba8b.tar.gz |
Move a one-liner post-extract script to be a standard package Makefile
target, and remove the now unnecessary script file.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/xcopilot/Makefile | 5 | ||||
-rwxr-xr-x | emulators/xcopilot/scripts/post-extract | 9 |
2 files changed, 4 insertions, 10 deletions
diff --git a/emulators/xcopilot/Makefile b/emulators/xcopilot/Makefile index 67dfb871ff1..171ec6b1e52 100644 --- a/emulators/xcopilot/Makefile +++ b/emulators/xcopilot/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2001/02/17 18:38:35 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2001/10/25 21:04:32 agc Exp $ # DISTNAME= xcopilot-0.6.6 @@ -15,4 +15,7 @@ GNU_CONFIGURE= YES USE_X11= YES USE_XPM= YES +post-extract: + ${RM} -f ${WRKSRC}/mc68k/custom.c + .include "../../mk/bsd.pkg.mk" diff --git a/emulators/xcopilot/scripts/post-extract b/emulators/xcopilot/scripts/post-extract deleted file mode 100755 index af703b69da6..00000000000 --- a/emulators/xcopilot/scripts/post-extract +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh -# -# $NetBSD: post-extract,v 1.1 1999/02/23 23:56:32 nathanw Exp $ -# - -echo "Running post-extract script" - -cd ${WRKSRC} -rm -f mc68k/custom.c |