Skip to content

Commit e2c2ad7

Browse files
committed
include: Do not generate xbps.h.in
xbps.h.in makes no mention of @@Version@@, so xbps.h.in gets copied verbatim to xbps.h. This adds unnecessary complexity and indirection.
1 parent e82437f commit e2c2ad7

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

include/Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ INCS = xbps.h
44

55
.PHONY: all
66
all:
7-
sed -e "s|@@VERSION@@|${VERSION}|g" ${INCS}.in > ${INCS}
7+
@:
88

99
.PHONY: install
1010
install:
@@ -17,7 +17,3 @@ install:
1717
.PHONY: uninstall
1818
uninstall:
1919
-rm -f $(DESTDIR)$(INCLUDEDIR)/$(INCS)
20-
21-
.PHONY: clean
22-
clean:
23-
-rm -f ${INCS}
File renamed without changes.

0 commit comments

Comments
 (0)