1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
From: Stephen M Moraco <stephen@debian.org>
Date: Fri, 21 Jan 2005 20:45:20 -0700
Subject: Build system fixes
Removes -p in faux-configure shell script for compat.
Forwarded: no
Bug-Debian: https://bugs.debian.org/264423
---
configure | 5 +++--
doc/Makefile | 6 ------
2 files changed, 3 insertions(+), 8 deletions(-)
diff --git a/configure b/configure
index dbf2fb6..9911580 100755
--- a/configure
+++ b/configure
@@ -1,4 +1,4 @@
-#!/bin/sh -p
+#!/bin/sh
# $Id: configure,v 1.10 2004/01/25 05:25:45 stephmo Exp $
#
# Generator for brickOS host-OS-dependend Makefile variables
@@ -37,7 +37,8 @@ TOOL_PATH="/usr/local/bin
# known PREFIXs of h8*gcc
TOOL_PREFIX="h8300-hms-
h8300hms-
- h8300-hitachi-hms-"
+ h8300-hitachi-hms-
+ h8300-hitachi-coff-"
HMSFULL=""
# for each path, do...
diff --git a/doc/Makefile b/doc/Makefile
index 6434288..4bf4591 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -28,12 +28,6 @@ docs-install: ${pkghtmldir} chkbuild
cp -f ${TEXT_DOCS} ${pkgdocdir}
cp -r images ${pkghtmldir}
cp -f *.html ${pkghtmldir}
- mkdir -p ${pkghtmldir}/HOWTO
- cp HOWTO/*.html ${pkghtmldir}/HOWTO
- cp HOWTO.html ${pkghtmldir}/HOWTO
- @# oops copied extra files, remove them
- @rm -f $(pkghtmldir)/HOWTO/t1.html
- @rm -f $(pkghtmldir)/HOWTO.html
chkbuild:
@if [ ! -f $(DOCBASE).html ] ;then \
|