# --- T2-COPYRIGHT-BEGIN --- # t2/package/*/fgetty/hotfix-makefile.patch # Copyright (C) 2004 - 2026 The T2 SDE Project # SPDX-License-Identifier: GPL-2.0 or patched project license # --- T2-COPYRIGHT-END --- --- fgetty-0.7/Makefile.vanilla 2024-01-12 19:41:02.599000000 +0100 +++ fgetty-0.7/Makefile 2024-01-12 19:41:22.779000000 +0100 @@ -8,12 +8,13 @@ #CROSS=arm-linux- CROSS= LDFLAGS=-s +STRIP=strip %.o: %.c # gcc -march=i386 -mcpu=i386 -pipe -Os -fomit-frame-pointer -I../dietlibc/include -c $^ -DTEST $(DIET) $(CROSS)$(CC) -pipe -Os -fomit-frame-pointer -I../dietlibc/include -c $^ -DTEST # gcc -march=i386 -mcpu=i386 -pipe -g -I../dietlibc/include -DTEST -c $^ - $(CROSS)strip -x -R .comment -R .note $@ + $(CROSS)$(STRIP) -x -R .comment -R .note $@ %: %.o $(DIET) $(CROSS)$(CC) -o $@ $^ $(LDFLAGS)