-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
only pass a single directory name at a time to 'install -d' as this i…
…s more portable. Fixes install problems on solaris.
- Loading branch information
dmcmahill
committed
Mar 27, 2007
1 parent
f67bb49
commit c646576
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
$NetBSD: distinfo,v 1.7 2007/03/08 19:23:04 wiz Exp $ | ||
$NetBSD: distinfo,v 1.8 2007/03/27 12:34:11 dmcmahill Exp $ | ||
|
||
SHA1 (compface-1.5.2.tar.gz) = 72dad8774b3301a1562bdbd5b3c5536ebf86a03d | ||
RMD160 (compface-1.5.2.tar.gz) = 17174e8c263ae3984dd74fa7e93f8835773cd742 | ||
Size (compface-1.5.2.tar.gz) = 46970 bytes | ||
SHA1 (patch-aa) = 3ed1a6cb88914f199b106fa31ee3e5fcbb2aff4b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
$NetBSD: patch-aa,v 1.4 2007/03/27 12:34:11 dmcmahill Exp $ | ||
|
||
--- Makefile.in.orig 2005-10-04 08:59:49.000000000 -0400 | ||
+++ Makefile.in | ||
@@ -74,7 +74,11 @@ dist: $(DISTFILES) | ||
$(RM) -rf `cat .fname` .fname | ||
|
||
install: $(NAMEEXE) $(UNNAMEEXE) $(LIBNAME) | ||
- $(INSTALL_PROGRAM) -d $(BINDIR) $(LIBDIR) $(MAN1DIR) $(MAN3DIR) $(INCLUDEDIR) | ||
+ $(BSD_INSTALL_PROGRAM_DIR) $(BINDIR) | ||
+ $(BSD_INSTALL_LIB_DIR) $(LIBDIR) | ||
+ $(BSD_INSTALL_MAN_DIR) $(MAN1DIR) | ||
+ $(BSD_INSTALL_MAN_DIR) $(MAN3DIR) | ||
+ $(BSD_INSTALL_DATA_DIR) $(INCLUDEDIR) | ||
$(INSTALL_PROGRAM) $(srcdir)/$(NAMEEXE) $(EXECUTABLE) | ||
-chmod 0755 $(EXECUTABLE) | ||
-strip $(EXECUTABLE) |