blob: 0b5f82153de2ed3bec9eef7447ed10a6c6212fdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
$NetBSD: patch-img_Makefile,v 1.1 2019/08/13 02:39:45 brook Exp $
Remove a non-portable install command line option (-D).
--- img/Makefile.orig 2018-11-07 18:06:57.000000000 +0000
+++ img/Makefile
@@ -13,7 +13,7 @@ include $(TOPDIR)/Rules.mak
sinclude .depend
install: xca-32x32.xpm
- install -D -m 644 $^ $(destdir)$(prefix)/share/pixmaps/xca-32x32.xpm
+ install -m 644 $^ $(destdir)$(prefix)/share/pixmaps/xca-32x32.xpm
imgres.cpp: imgres.rcc
@$(PRINT) " RCC [$(BASENAME)] $@"
|