Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dos2unix: Update to 7.4.4 #1366

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions makefiles/dos2unix.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ $(error Use the main Makefile)
endif

SUBPROJECTS += dos2unix
DOS2UNIX_VERSION := 7.4.2
DOS2UNIX_VERSION := 7.4.4
DEB_DOS2UNIX_V ?= $(DOS2UNIX_VERSION)

dos2unix-setup: setup
Expand All @@ -16,9 +16,12 @@ dos2unix:
@echo "Using previously built dos2unix."
else
dos2unix: dos2unix-setup gettext
+$(MAKE) -C $(BUILD_WORK)/dos2unix LDFLAGS="$(LDFLAGS)" prefix=$(MEMO_PREFIX)$(MEMO_SUB_PREFIX)
+$(MAKE) -C $(BUILD_WORK)/dos2unix \
LDFLAGS="$(LDFLAGS)" \
prefix="$(MEMO_PREFIX)$(MEMO_SUB_PREFIX)"
+$(MAKE) -C $(BUILD_WORK)/dos2unix install \
DESTDIR=$(BUILD_STAGE)/dos2unix prefix=$(MEMO_PREFIX)$(MEMO_SUB_PREFIX)
DESTDIR="$(BUILD_STAGE)/dos2unix" \
prefix="$(MEMO_PREFIX)$(MEMO_SUB_PREFIX)"
$(call AFTER_BUILD)
endif

Expand Down