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

sync #534

Merged
merged 2 commits into from
Aug 27, 2024
Merged

sync #534

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
10 changes: 5 additions & 5 deletions tcptraceroute/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ PKG_NAME:=tcptraceroute
PKG_VERSION:=1.5beta7
PKG_RELEASE:=1

PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://michael.toren.net/code/tcptraceroute
PKG_MD5SUM:=65d1001509f971ea986fcbc2dd009643
PKG_SOURCE_PROTO:=git
PKG_SOURCE_VERSION:=tcptraceroute-$(PKG_VERSION)
PKG_SOURCE_URL:=https://github.com/mct/tcptraceroute.git

include $(INCLUDE_DIR)/package.mk

Expand All @@ -34,11 +34,11 @@ define Build/Configure
)
endef

define Build/Compile
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR)
endef

define Package/tcptraceroute/install
define Package/tcptraceroute/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/tcptraceroute $(1)/usr/bin/
endef
Expand Down