Skip to content

Commit

Permalink
only pass a single directory name at a time to 'install -d' as this i…
Browse files Browse the repository at this point in the history
…s more portable.

Fixes install problems on solaris.
  • Loading branch information
dmcmahill committed Mar 27, 2007
1 parent f67bb49 commit c646576
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
3 changes: 2 additions & 1 deletion graphics/compface/distinfo
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
17 changes: 17 additions & 0 deletions graphics/compface/patches/patch-aa
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)

0 comments on commit c646576

Please sign in to comment.